Tim Peters
9ba3684ecc
Gave the new datetime.strptime() a versionadded blurb.
2005-01-13 21:06:25 +00:00
Skip Montanaro
0af3ade6aa
Add strptime() constructor to datetime class. Thanks to Josh Spoerri for
...
the changes.
2005-01-13 04:12:31 +00:00
Fred Drake
2f8c6589f5
fix typo
2005-01-12 19:11:45 +00:00
Andrew McNamara
8231de0513
Many updates to csv module doco.
2005-01-12 11:47:57 +00:00
Raymond Hettinger
d4f5b07e5d
Add duck-typing to the glossary.
2005-01-11 16:11:13 +00:00
Johannes Gijsbers
97613ad02d
Patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown:
...
* Document hasFeature(), createDocument(), CreateDocumentType(),
hasAttribute(), hasAttributeNS().
* In the documentation for createDocument(), it is now stated that the Python
DOM API allows implementations to forego creation of the document element
child node, if no namespace and local name arguments are given. (This
possibility is left open and unaddressed in the W3C spec).
* Addition by me: use 'name' rather than 'attname', for consistency with the
DOM specification and the Python DOM API implementation.
2005-01-09 00:36:53 +00:00
Johannes Gijsbers
158df10341
Bug #1098497 : various small typo's, grammar and markup nits.
2005-01-09 00:12:48 +00:00
Johannes Gijsbers
836f5433f7
Patch #943206 :
...
`glob.glob()` currently calls itself recursively to build a list of matches of
the dirname part of the pattern and then filters by the basename part. This is
effectively BFS. ``glob.glob('*/*/*/*/*/foo')`` will build a huge list of all
directories 5 levels deep even if only a handful of them contain a ``foo``
entry. A generator-based recusion would never have to store these list at once
by implementing DFS. This patch converts the `glob` function to an `iglob`
recursive generator . `glob()` now just returns ``list(iglob(pattern))``.
I also cleaned up the code a bit (reduced duplicate `has_magic()` checks and
created a second `glob0` helper func so that the main loop need not be
duplicated).
Thanks to Cherniavsky Beni for the patch!
2005-01-08 13:13:19 +00:00
Johannes Gijsbers
e4172eadf3
Patch #1094015 :
...
* Use os.makedirs() instead os.mkdir(). (bug #975763 )
* Use copystat() to copy directory bits (bug #1048878 )
2005-01-08 12:31:29 +00:00
Andrew M. Kuchling
e4f5600e5c
[Bug 1083177] Describe signal() change; add a link
2005-01-07 14:34:41 +00:00
Raymond Hettinger
97db05de3e
SF #75103 : imghdr -- identify JPEGs in EXIF format
2005-01-07 08:15:41 +00:00
Raymond Hettinger
72b83c86a9
SF patch 1094011: Docs for file() vs open().
2005-01-07 04:33:44 +00:00
Facundo Batista
bccc9a956a
Added example to os.stat()
2005-01-07 02:50:22 +00:00
Raymond Hettinger
17a7924667
SF bug #1091740 : garbage collector still documented as optional
2005-01-07 00:49:17 +00:00
Skip Montanaro
becbdec1d9
add two missing items
2005-01-05 07:19:11 +00:00
Skip Montanaro
b80bad4366
add descriptions of exported data attributes
2005-01-05 07:13:32 +00:00
Skip Montanaro
4f49e7d0e7
describe reset()
2005-01-05 07:03:53 +00:00
Skip Montanaro
bb0c9dc852
add a couple missing items
2005-01-05 06:58:15 +00:00
Raymond Hettinger
31043cd6d8
Clarify that DictMixin is still useful. Only the UserDict class was supplanted.
2005-01-04 21:25:00 +00:00
Martin v. Löwis
d61788b9ae
Fix typo.
2005-01-03 23:42:01 +00:00
Peter Astrand
454f76711c
New subprocess utility function: check_call. Closes #1071764 .
2005-01-01 09:36:35 +00:00
Raymond Hettinger
68804315e0
SF Patch #1093896 : miscellaneous doc typos
2005-01-01 00:28:46 +00:00
Raymond Hettinger
79e0531aef
SF bug #1090139 : presentation typo in lib: 6.21.4.2 How callbacks are called
2004-12-31 01:07:27 +00:00
Martin v. Löwis
658b50f579
Update to VC 7.1. Will backport to 2.4.
2004-12-30 10:44:32 +00:00
Andrew M. Kuchling
0aa8ef1545
Typo fix
2004-12-29 12:34:21 +00:00
Skip Montanaro
9935e7fac0
correct decorator example, tweak description slightly
2004-12-26 15:29:28 +00:00
Brett Cannon
ac7836ae55
Fix sentence stating TextEdit only saves in RTF; can save in plaintext as well.
...
Closes bug #1085300 . Thanks unclewalrus.
2004-12-24 02:40:59 +00:00
Fred Drake
0a6864ecc5
discuss how the __builtin__ module is normally used, and try to clarify the
...
difference between __builtins__ and __builtin__ (based on an email comment)
2004-12-23 16:50:36 +00:00
Fred Drake
fb915fe812
fix weird capitalization of "built-in"
2004-12-23 16:22:45 +00:00
Jeremy Hylton
6414cd8717
SF patch #1055159 via Titus Brown: Document redirect limitation.
...
Bug fix candidate.
2004-12-22 14:19:09 +00:00
Brett Cannon
1902146ea1
Remove outdated comments about expanduser and expandvars for Macintosh that
...
referred to OS 9 semantics.
2004-12-22 05:40:45 +00:00
Fred Drake
7c404a4bf7
add __file__ to the globals available for tests loaded via DocFileSuite;
...
this is useful for locating supporting data files, just as it is in Python
modules
2004-12-21 23:46:34 +00:00
Johannes Gijsbers
f654c1c383
Add accidentally removed \end{description} back in.
2004-12-21 21:14:42 +00:00
Armin Rigo
2ccea17856
Any call to marshal.dumps() with the new optional argument 'version' just
...
immediately segfaults, due to a typo! This was obviously never tested...
Added a test for it, and also fixed the documentation.
2004-12-20 12:25:57 +00:00
Raymond Hettinger
f964154b8c
Bug #1088206 : zlib decompressobj documentation typo
2004-12-20 06:08:12 +00:00
Raymond Hettinger
da264121f4
Bug #1066607 : "Limitations" section of profiler docs is incorrect
2004-12-19 20:31:46 +00:00
Walter Dörwald
3fa932f7ed
Fix typo (from SF bug #1086127 ).
2004-12-15 23:44:18 +00:00
Raymond Hettinger
744aaa02e0
SF bug #1084457 : ossaudiodev no longer undocumented
2004-12-14 07:19:22 +00:00
Johannes Gijsbers
537d3fcf93
Check in missing png version of pyfav.gif.
2004-12-13 13:07:59 +00:00
Anthony Baxter
57ee770df1
note for amk
2004-12-13 11:39:33 +00:00
Gregory P. Smith
7af53a6de4
the bsddb module now also works with BerkeleyDB 4.3.
2004-12-13 09:57:32 +00:00
Johannes Gijsbers
f4a70f35b0
Patch #1080684 : typo repair. Thanks George Yoshida!
...
- Doc/lib/libbase64.tex
s/algorith/algorithm
- Doc/lib/libpickle.tex
s/interchangable/interchangeable
- Doc/lib/libxmlrpclib.tex
s/{_cmp__}/{__cmp__}
leading underscore needs to be double, not single.
- Doc/ref/ref6.tex
0/1 => False/True
2004-12-12 16:52:40 +00:00
Brett Cannon
222d5b466b
Setting textwrap.TextWrapper().expand_tabs to True calls expandtabs, not
...
expand_tabs, on the object being wrapped.
2004-12-11 09:53:52 +00:00
Raymond Hettinger
8ef9b3e527
SF bug #1082944 : Incorrect docs for PyUnicode_TailMatch
...
* Note correct return type is int.
* Note that -1 returned on failure.
2004-12-10 17:12:32 +00:00
Raymond Hettinger
a6b45cc31d
Eliminate the deprecated option to return None instead of a tuple of arguments in __reduce__().
2004-12-07 07:05:57 +00:00
Raymond Hettinger
a32d22a509
Remove deprecated xmllib from inclusion in the docs.
2004-12-06 12:29:56 +00:00
Walter Dörwald
e208412348
Fix for SF bug #947894 : calendar.weekheader() undocumented
2004-12-06 07:58:14 +00:00
Brett Cannon
c8aa848ece
Have test_mkalias_relative check that sys.prefix already exists; otherwise test
...
is pointless.
Also add a note to the docs for the 'test' package that test cases should check
first that any conditions needed in the operating system are met before having
a test run.
Closes bug #1077302 . THanks, Ian Holsman.
2004-12-06 06:08:59 +00:00
Peter Astrand
5f5e141589
Changed signature of call function to avoid confusion: this 'args' is not the same as the one to the Popen constructor
2004-12-05 20:15:36 +00:00
Raymond Hettinger
b2594050ea
Added optional None arguments to itertools.islice().
2004-12-05 09:25:51 +00:00