summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Patch #798297: Add IMAP THREAD command.Martin v. Löwis2003-11-101-0/+11
* mktemp() shouldn't rely on os.path.exists(), which can return False ifGuido van Rossum2003-11-101-1/+23
* fixed wrong error checking on fcntl call as per SF bug # 821896Alex Martelli2003-11-091-2/+3
* fixed obvious bug in _send_header as per SF bug #831271Alex Martelli2003-11-091-2/+1
* Update test to handle list.__reversed__().Raymond Hettinger2003-11-081-0/+1
* SF bug #835457: Small typo in logging documentationRaymond Hettinger2003-11-081-1/+1
* Convert heapq.py to a C implementation.Raymond Hettinger2003-11-082-256/+0
* Overallocate target buffer for normalization more early. Fixes #834676.Martin v. Löwis2003-11-061-0/+3
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-066-8/+24
* Add traceback.format_exc().Neil Schemenauer2003-11-052-7/+14
* * Use weakref's of DBCursor objects for the iterator cursors to avoid aGregory P. Smith2003-11-032-50/+121
* SF patch #834015: Remove imports of unused modulesRaymond Hettinger2003-11-025-13/+8
* * Fix the singlethreaded deadlocks occurring in the simple bsddb interface.Gregory P. Smith2003-11-022-8/+154
* Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2.Martin v. Löwis2003-10-311-0/+4
* Patch #531629: Add multicall support.Martin v. Löwis2003-10-311-1/+65
* Patch #785689: Use basename in usage. Backported to 2.3.Martin v. Löwis2003-10-311-1/+1
* Patch #: Add POP3 over SSL support.Martin v. Löwis2003-10-311-1/+89
* Update test to include "sorted" in dir(list).Raymond Hettinger2003-10-291-1/+2
* Add list.sorted() classmethod.Raymond Hettinger2003-10-292-0/+63
* SF #775057, fix IDLE problem in about dialogNeal Norwitz2003-10-281-1/+3
* Fixed dis.disassemble_string().Armin Rigo2003-10-281-28/+24
* Deleting cyclic object comparison.Armin Rigo2003-10-284-69/+43
* Docstring fix: XHTML 1.0 entities are supportedAndrew M. Kuchling2003-10-271-3/+3
* Patch #817854: Add missing operations for SSLFile. Fixes #792101.Martin v. Löwis2003-10-271-0/+25
* Another instance of the same typo.Steve Purcell2003-10-261-2/+2
* Replace the window() example with pairwise() which demonstrates tee().Raymond Hettinger2003-10-261-13/+10
* Minor improvements to itertools.tee():Raymond Hettinger2003-10-261-0/+12
* Incorporated patch 819077, from George Yoshida:Steve Purcell2003-10-261-7/+6
* Patch #812378: Normalize white space.Martin v. Löwis2003-10-241-3/+3
* [Bug #822668] tarfile raises an exception if the tarfile is gzipped and is to...Andrew M. Kuchling2003-10-241-1/+1
* Fixed bug introduced in revision 1.27Armin Rigo2003-10-241-1/+1
* Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().Walter Dörwald2003-10-241-0/+12
* Added itertools.tee()Raymond Hettinger2003-10-241-61/+130
* Patch #813200: Quote executable path on Windows. Fixes #811082.Martin v. Löwis2003-10-231-2/+10
* Remove unneeded import.Guido van Rossum2003-10-221-1/+0
* Replace a reduce() with sum().Raymond Hettinger2003-10-221-3/+2
* Add docstringAndrew M. Kuchling2003-10-221-0/+4
* [Part of patch #648322] Delete the poll2() function, which uses a 'poll' exte...Andrew M. Kuchling2003-10-221-29/+4
* [Bug #758241] When you use asyncore with a non-default map, methodsAndrew M. Kuchling2003-10-221-2/+7
* Apply patch 823328 -- support for rfc 2617 digestion authentication.Jeremy Hylton2003-10-211-44/+96
* Make both items() methods return lists; one had changed to return anFred Drake2003-10-211-5/+4
* Show microseconds, milliseconds or seconds, whichever is most natural,Guido van Rossum2003-10-201-1/+9
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-2021-23/+23
* Patch #822994: Consolidate tests for self.closed.Martin v. Löwis2003-10-181-18/+14
* Implemented non-recursive SRE matching.Gustavo Niemeyer2003-10-174-10/+62
* Let library modules use the new keyword arguments for list.sort().Raymond Hettinger2003-10-167-24/+18
* * list.sort() now supports three keyword arguments: cmp, key, and reverse.Raymond Hettinger2003-10-161-45/+101
* Open results files, which contain binary pickles, in binary mode.Jeremy Hylton2003-10-141-4/+2
* Add test__locale to expected skip list for Darwin.Brett Cannon2003-10-131-0/+1
* Patch #810914: Return absolute path for mkstemp. Fixes #810408.Martin v. Löwis2003-10-122-2/+8