Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | operator.itemgetter() and operator.attrgetter() now support extraction | Raymond Hettinger | 2005-03-09 | 1 | -4/+11 |
| | | | | | of multiple fields. This provides direct support for sorting by multiple keys. | ||||
* | hmmm... moving def'n of version makes the __init__ unnecessary for the | Skip Montanaro | 2005-03-09 | 1 | -2/+0 |
| | | | | example | ||||
* | Correct description/example of how to override User-agent. | Skip Montanaro | 2005-03-09 | 1 | -4/+4 |
| | |||||
* | Make functional.partial() more closely match the spec by emulating some ↵ | Raymond Hettinger | 2005-03-08 | 1 | -0/+8 |
| | | | | | | | useful features of regular functions: * Made weak referencable. * Allow attribute access so a user can set __name__, __doc__, etc. | ||||
* | SF #818006: merge from release24-maint branch: add useful read-only | Greg Ward | 2005-03-07 | 1 | -1/+16 |
| | | | | attributes to oss_audio_device object: 'closed', 'name', and 'mode'. | ||||
* | Patch #918101: Add tarfile open mode r|* for auto-detection of the | Martin v. Löwis | 2005-03-05 | 1 | -1/+2 |
| | | | | stream compression; add, for symmetry reasons, r:* as a synonym of r. | ||||
* | Patch #1043890: tarfile: add extractall() method. | Martin v. Löwis | 2005-03-04 | 1 | -0/+25 |
| | |||||
* | minor edits: | Fred Drake | 2005-03-03 | 1 | -3/+4 |
| | | | | | | - function names marked with \function should include parentheses - "standard error" instead of "stderr" for text - a boolean parameter takes true or false values, not just True or False | ||||
* | Patches #749830, #1144555: allow UNIX mmap size to default to current | Martin v. Löwis | 2005-03-03 | 1 | -2/+4 |
| | | | | file size. | ||||
* | Document quiet parameter to decode. Fixes #803413. | Martin v. Löwis | 2005-03-03 | 1 | -1/+5 |
| | |||||
* | Noted that the module is new in version 2.5. | Raymond Hettinger | 2005-03-02 | 1 | -0/+1 |
| | |||||
* | Improve (?) description of system dependence of access to the pw_passwd | Skip Montanaro | 2005-03-02 | 1 | -2/+5 |
| | | | | field on systems that support shadow passwords. | ||||
* | SF patch #941881: PEP 309 Implementation (Partial Function Application). | Raymond Hettinger | 2005-02-28 | 2 | -0/+73 |
| | | | | | Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger. | ||||
* | Update an example to match current output. | Raymond Hettinger | 2005-02-23 | 1 | -3/+1 |
| | |||||
* | Document missing opcodes. | Raymond Hettinger | 2005-02-21 | 1 | -0/+8 |
| | |||||
* | Fix some wording and grammar nits. | Raymond Hettinger | 2005-02-21 | 1 | -5/+5 |
| | |||||
* | Fixed documentation for SMTPHandler | Vinay Sajip | 2005-02-18 | 1 | -2/+1 |
| | |||||
* | Update references specifying "Macintosh" to mean OS X semantics and not Mac OS | Brett Cannon | 2005-02-13 | 4 | -84/+83 |
| | | | | | | 9. Applies patch #1095802. Thanks Jack Jansen. | ||||
* | SF bug #1119700: list extend() accepts args besides lists | Raymond Hettinger | 2005-02-09 | 1 | -1/+1 |
| | |||||
* | Security fix PSF-2005-001 for SimpleXMLRPCServer.py. | Guido van Rossum | 2005-02-03 | 1 | -2/+17 |
| | |||||
* | Bug #1108490: fix broken link. | Johannes Gijsbers | 2005-01-29 | 1 | -1/+1 |
| | |||||
* | SF bug #1108303: fix .split() maxsplit doc | Raymond Hettinger | 2005-01-26 | 1 | -1/+1 |
| | | | | Docs incorrectly stated that maxsplit=0 would cause unlimited splitting. | ||||
* | SF bug #1105286: Undocumented implicit strip() in split(None) string method | Raymond Hettinger | 2005-01-25 | 1 | -6/+10 |
| | | | | Clarify the behavior when a string begins or ends with whitespace. | ||||
* | Patch #579435: Shadow Password Support Module | Martin v. Löwis | 2005-01-23 | 3 | -0/+48 |
| | |||||
* | Truncate st_?time before comparing it with ST_?TIME in the tests. | Martin v. Löwis | 2005-01-23 | 1 | -0/+3 |
| | |||||
* | fix typeset of vertical bar for PDF format | Fred Drake | 2005-01-19 | 1 | -2/+2 |
| | | | | (closes SF bug #1008998) | ||||
* | documentation for the zipimport module using contributed patch | Fred Drake | 2005-01-19 | 2 | -0/+134 |
| | | | | (closes SF bug #853800; markup adjusted) | ||||
* | Description of args to IMAP4.store() in imaplib | Fred Drake | 2005-01-19 | 1 | -1/+20 |
| | | | | (closes SF patch #1084092; modified per comments in SF) | ||||
* | fix a bunch of spelling errors | Fred Drake | 2005-01-19 | 6 | -6/+6 |
| | | | | (closes SF patch #1104868) | ||||
* | remove spurious line from widget variables example | Fred Drake | 2005-01-19 | 1 | -1/+0 |
| | | | | (closes SF patch #1094815) | ||||
* | Document the reconvert module. | Skip Montanaro | 2005-01-16 | 2 | -0/+81 |
| | |||||
* | Default stat_float_times to true. | Martin v. Löwis | 2005-01-16 | 1 | -11/+7 |
| | |||||
* | Added SEEK_* constants. Fixes #711830. | Martin v. Löwis | 2005-01-16 | 1 | -0/+9 |
| | |||||
* | Gave the new datetime.strptime() a versionadded blurb. | Tim Peters | 2005-01-13 | 1 | -0/+2 |
| | |||||
* | Add strptime() constructor to datetime class. Thanks to Josh Spoerri for | Skip Montanaro | 2005-01-13 | 1 | -0/+9 |
| | | | | the changes. | ||||
* | Many updates to csv module doco. | Andrew McNamara | 2005-01-12 | 1 | -32/+110 |
| | |||||
* | 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. | ||||
* | 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) | ||||
* | 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 |
| | |||||
* | 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 | 42 | -64/+64 |
| |