summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug #1108490: fix broken link.Johannes Gijsbers2005-01-291-1/+1
|
* SF bug #1108303: fix .split() maxsplit docRaymond Hettinger2005-01-261-1/+1
| | | | Docs incorrectly stated that maxsplit=0 would cause unlimited splitting.
* SF bug #1105286: Undocumented implicit strip() in split(None) string methodRaymond Hettinger2005-01-251-6/+10
| | | | Clarify the behavior when a string begins or ends with whitespace.
* Patch #579435: Shadow Password Support ModuleMartin v. Löwis2005-01-233-0/+48
|
* Truncate st_?time before comparing it with ST_?TIME in the tests.Martin v. Löwis2005-01-231-0/+3
|
* fix typeset of vertical bar for PDF formatFred Drake2005-01-191-2/+2
| | | | (closes SF bug #1008998)
* documentation for the zipimport module using contributed patchFred Drake2005-01-192-0/+134
| | | | (closes SF bug #853800; markup adjusted)
* Description of args to IMAP4.store() in imaplibFred Drake2005-01-191-1/+20
| | | | (closes SF patch #1084092; modified per comments in SF)
* fix a bunch of spelling errorsFred Drake2005-01-196-6/+6
| | | | (closes SF patch #1104868)
* remove spurious line from widget variables exampleFred Drake2005-01-191-1/+0
| | | | (closes SF patch #1094815)
* Document the reconvert module.Skip Montanaro2005-01-162-0/+81
|
* Default stat_float_times to true.Martin v. Löwis2005-01-161-11/+7
|
* Added SEEK_* constants. Fixes #711830.Martin v. Löwis2005-01-161-0/+9
|
* Gave the new datetime.strptime() a versionadded blurb.Tim Peters2005-01-131-0/+2
|
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-131-0/+9
| | | | the changes.
* Many updates to csv module doco.Andrew McNamara2005-01-121-32/+110
|
* Patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown:Johannes Gijsbers2005-01-091-9/+44
| | | | | | | | | | | | | * 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.
* Patch #943206:Johannes Gijsbers2005-01-081-1/+7
| | | | | | | | | | | | | | | | `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!
* Patch #1094015:Johannes Gijsbers2005-01-081-4/+12
| | | | | * Use os.makedirs() instead os.mkdir(). (bug #975763) * Use copystat() to copy directory bits (bug #1048878)
* SF #75103: imghdr -- identify JPEGs in EXIF formatRaymond Hettinger2005-01-071-1/+3
|
* SF patch 1094011: Docs for file() vs open().Raymond Hettinger2005-01-071-3/+6
|
* Added example to os.stat()Facundo Batista2005-01-071-1/+11
|
* SF bug #1091740: garbage collector still documented as optionalRaymond Hettinger2005-01-071-5/+0
|
* add two missing itemsSkip Montanaro2005-01-051-0/+10
|
* add descriptions of exported data attributesSkip Montanaro2005-01-051-0/+25
|
* describe reset()Skip Montanaro2005-01-051-0/+4
|
* add a couple missing itemsSkip Montanaro2005-01-051-0/+10
|
* Clarify that DictMixin is still useful. Only the UserDict class was supplanted.Raymond Hettinger2005-01-041-13/+11
|
* New subprocess utility function: check_call. Closes #1071764.Peter Astrand2005-01-011-1/+17
|
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-0142-64/+64
|
* SF bug #1090139: presentation typo in lib: 6.21.4.2 How callbacks are calledRaymond Hettinger2004-12-311-1/+1
|
* discuss how the __builtin__ module is normally used, and try to clarify theFred Drake2004-12-231-5/+38
| | | | difference between __builtins__ and __builtin__ (based on an email comment)
* fix weird capitalization of "built-in"Fred Drake2004-12-231-1/+1
|
* SF patch #1055159 via Titus Brown: Document redirect limitation.Jeremy Hylton2004-12-221-0/+5
| | | | Bug fix candidate.
* Remove outdated comments about expanduser and expandvars for Macintosh thatBrett Cannon2004-12-221-3/+1
| | | | referred to OS 9 semantics.
* add __file__ to the globals available for tests loaded via DocFileSuite;Fred Drake2004-12-211-0/+4
| | | | | this is useful for locating supporting data files, just as it is in Python modules
* Add accidentally removed \end{description} back in.Johannes Gijsbers2004-12-211-0/+1
|
* Any call to marshal.dumps() with the new optional argument 'version' justArmin Rigo2004-12-201-3/+3
| | | | | immediately segfaults, due to a typo! This was obviously never tested... Added a test for it, and also fixed the documentation.
* Bug #1088206: zlib decompressobj documentation typoRaymond Hettinger2004-12-201-1/+1
|
* Bug #1066607: "Limitations" section of profiler docs is incorrectRaymond Hettinger2004-12-191-10/+1
|
* Fix typo (from SF bug #1086127).Walter Dörwald2004-12-151-1/+1
|
* SF bug #1084457: ossaudiodev no longer undocumentedRaymond Hettinger2004-12-141-5/+0
|
* the bsddb module now also works with BerkeleyDB 4.3.Gregory P. Smith2004-12-131-1/+1
|
* Patch #1080684: typo repair. Thanks George Yoshida!Johannes Gijsbers2004-12-123-4/+4
| | | | | | | | | | | | | | | | - 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
* Setting textwrap.TextWrapper().expand_tabs to True calls expandtabs, notBrett Cannon2004-12-111-1/+1
| | | | expand_tabs, on the object being wrapped.
* Eliminate the deprecated option to return None instead of a tuple of ↵Raymond Hettinger2004-12-071-6/+2
| | | | arguments in __reduce__().
* Remove deprecated xmllib from inclusion in the docs.Raymond Hettinger2004-12-061-1/+1
|
* Fix for SF bug #947894: calendar.weekheader() undocumentedWalter Dörwald2004-12-061-0/+5
|
* Have test_mkalias_relative check that sys.prefix already exists; otherwise testBrett Cannon2004-12-061-2/+6
| | | | | | | | | | 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.
* Changed signature of call function to avoid confusion: this 'args' is not ↵Peter Astrand2004-12-051-1/+1
| | | | the same as the one to the Popen constructor