Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown: | Johannes Gijsbers | 2005-01-09 | 1 | -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. | ||||
* | Bug #1098497: various small typo's, grammar and markup nits. | Johannes Gijsbers | 2005-01-09 | 1 | -4/+4 |
| | |||||
* | Patch #943206: | Johannes Gijsbers | 2005-01-08 | 1 | -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 Gijsbers | 2005-01-08 | 1 | -4/+12 |
| | | | | | * Use os.makedirs() instead os.mkdir(). (bug #975763) * Use copystat() to copy directory bits (bug #1048878) | ||||
* | [Bug 1083177] Describe signal() change; add a link | Andrew M. Kuchling | 2005-01-07 | 1 | -4/+14 |
| | |||||
* | SF #75103: imghdr -- identify JPEGs in EXIF format | Raymond Hettinger | 2005-01-07 | 1 | -1/+3 |
| | |||||
* | SF patch 1094011: Docs for file() vs open(). | Raymond Hettinger | 2005-01-07 | 1 | -3/+6 |
| | |||||
* | Added example to os.stat() | Facundo Batista | 2005-01-07 | 1 | -1/+11 |
| | |||||
* | SF bug #1091740: garbage collector still documented as optional | Raymond Hettinger | 2005-01-07 | 1 | -5/+0 |
| | |||||
* | add two missing items | Skip Montanaro | 2005-01-05 | 1 | -0/+10 |
| | |||||
* | add descriptions of exported data attributes | Skip Montanaro | 2005-01-05 | 1 | -0/+25 |
| | |||||
* | describe reset() | Skip Montanaro | 2005-01-05 | 1 | -0/+4 |
| | |||||
* | add a couple missing items | Skip Montanaro | 2005-01-05 | 1 | -0/+10 |
| | |||||
* | Clarify that DictMixin is still useful. Only the UserDict class was supplanted. | Raymond Hettinger | 2005-01-04 | 1 | -13/+11 |
| | |||||
* | Fix typo. | Martin v. Löwis | 2005-01-03 | 1 | -2/+2 |
| | |||||
* | New subprocess utility function: check_call. Closes #1071764. | Peter Astrand | 2005-01-01 | 1 | -1/+17 |
| | |||||
* | SF Patch #1093896: miscellaneous doc typos | Raymond Hettinger | 2005-01-01 | 60 | -102/+103 |
| | |||||
* | SF bug #1090139: presentation typo in lib: 6.21.4.2 How callbacks are called | Raymond Hettinger | 2004-12-31 | 1 | -1/+1 |
| | |||||
* | Update to VC 7.1. Will backport to 2.4. | Martin v. Löwis | 2004-12-30 | 1 | -54/+54 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2004-12-29 | 1 | -1/+1 |
| | |||||
* | correct decorator example, tweak description slightly | Skip Montanaro | 2004-12-26 | 1 | -11/+15 |
| | |||||
* | Fix sentence stating TextEdit only saves in RTF; can save in plaintext as well. | Brett Cannon | 2004-12-24 | 1 | -2/+2 |
| | | | | Closes bug #1085300. Thanks unclewalrus. | ||||
* | discuss how the __builtin__ module is normally used, and try to clarify the | Fred Drake | 2004-12-23 | 1 | -5/+38 |
| | | | | difference between __builtins__ and __builtin__ (based on an email comment) | ||||
* | fix weird capitalization of "built-in" | Fred Drake | 2004-12-23 | 1 | -1/+1 |
| | |||||
* | SF patch #1055159 via Titus Brown: Document redirect limitation. | Jeremy Hylton | 2004-12-22 | 1 | -0/+5 |
| | | | | Bug fix candidate. | ||||
* | Remove outdated comments about expanduser and expandvars for Macintosh that | Brett Cannon | 2004-12-22 | 1 | -3/+1 |
| | | | | referred to OS 9 semantics. | ||||
* | add __file__ to the globals available for tests loaded via DocFileSuite; | Fred Drake | 2004-12-21 | 1 | -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 Gijsbers | 2004-12-21 | 1 | -0/+1 |
| | |||||
* | Any call to marshal.dumps() with the new optional argument 'version' just | Armin Rigo | 2004-12-20 | 1 | -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 typo | Raymond Hettinger | 2004-12-20 | 1 | -1/+1 |
| | |||||
* | Bug #1066607: "Limitations" section of profiler docs is incorrect | Raymond Hettinger | 2004-12-19 | 1 | -10/+1 |
| | |||||
* | Fix typo (from SF bug #1086127). | Walter Dörwald | 2004-12-15 | 1 | -1/+1 |
| | |||||
* | SF bug #1084457: ossaudiodev no longer undocumented | Raymond Hettinger | 2004-12-14 | 1 | -5/+0 |
| | |||||
* | Check in missing png version of pyfav.gif. | Johannes Gijsbers | 2004-12-13 | 1 | -0/+0 |
| | |||||
* | note for amk | Anthony Baxter | 2004-12-13 | 1 | -0/+3 |
| | |||||
* | the bsddb module now also works with BerkeleyDB 4.3. | Gregory P. Smith | 2004-12-13 | 1 | -1/+1 |
| | |||||
* | Patch #1080684: typo repair. Thanks George Yoshida! | Johannes Gijsbers | 2004-12-12 | 4 | -9/+10 |
| | | | | | | | | | | | | | | | | - 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, not | Brett Cannon | 2004-12-11 | 1 | -1/+1 |
| | | | | expand_tabs, on the object being wrapped. | ||||
* | SF bug #1082944: Incorrect docs for PyUnicode_TailMatch | Raymond Hettinger | 2004-12-10 | 1 | -1/+2 |
| | | | | | * Note correct return type is int. * Note that -1 returned on failure. | ||||
* | Eliminate the deprecated option to return None instead of a tuple of ↵ | Raymond Hettinger | 2004-12-07 | 1 | -6/+2 |
| | | | | arguments in __reduce__(). | ||||
* | Remove deprecated xmllib from inclusion in the docs. | Raymond Hettinger | 2004-12-06 | 2 | -2/+1 |
| | |||||
* | Fix for SF bug #947894: calendar.weekheader() undocumented | Walter Dörwald | 2004-12-06 | 1 | -0/+5 |
| | |||||
* | Have test_mkalias_relative check that sys.prefix already exists; otherwise test | Brett Cannon | 2004-12-06 | 1 | -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 Astrand | 2004-12-05 | 1 | -1/+1 |
| | | | | the same as the one to the Popen constructor | ||||
* | Added optional None arguments to itertools.islice(). | Raymond Hettinger | 2004-12-05 | 1 | -0/+5 |
| | |||||
* | remove dependencies that are no longer used for the library reference | Fred Drake | 2004-12-05 | 1 | -3/+0 |
| | |||||
* | Remove the deprecated statcache module. | Raymond Hettinger | 2004-12-05 | 2 | -61/+0 |
| | |||||
* | Removed the deprecated bin parameter from the pickle module. | Raymond Hettinger | 2004-12-05 | 1 | -34/+11 |
| | |||||
* | Removed deprecated method arguments from the shelve module. | Raymond Hettinger | 2004-12-05 | 1 | -10/+8 |
| | |||||
* | Removed deprecated method from pstats. | Raymond Hettinger | 2004-12-05 | 1 | -8/+0 |
| |