summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Lists work better when popping from the right.Raymond Hettinger2004-02-071-3/+4
* Have deques support high volume loads.Raymond Hettinger2004-02-061-0/+12
* Fix test failure message (from SF patch #885008)Walter Dörwald2004-02-061-1/+1
* Back rev 1.3 out per Raymond's request.Hye-Shik Chang2004-02-061-1/+6
* Simple is better than complex.Hye-Shik Chang2004-02-061-6/+1
* Fix reallocation bug in unicode.translate(): The code was comparingWalter Dörwald2004-02-051-0/+1
* Allocating a new weakref object can cause existing weakref objects forFred Drake2004-02-041-0/+32
* - add tests that exercise fixes for the PyWeakref_NewRef() andFred Drake2004-02-031-0/+41
* Fix input() builtin function to respect compiler flags.Hye-Shik Chang2004-02-021-0/+13
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-297-35/+360
* don't wrap lines too late by defaultFred Drake2004-01-261-2/+2
* There was an error in the Tk error dialog fix at Rev 1.84 which caused startingKurt B. Kaiser2004-01-211-2/+2
* rpc.py:SocketIO - Large modules were generating large pickles when downloadedKurt B. Kaiser2004-01-212-8/+14
* Added a Tk error dialog to run.py inform the user if the subprocess can'tKurt B. Kaiser2004-01-214-56/+96
* Add a Guido inspired example for groupby().Raymond Hettinger2004-01-201-0/+14
* Let the default encodings search function lookup aliases before trying the co...Marc-André Lemburg2004-01-201-18/+26
* Add some more code page aliases needed for completeness.Marc-André Lemburg2004-01-201-0/+16
* Fix a typo: s/iso_3022/iso2022/Hye-Shik Chang2004-01-201-1/+1
* Test not the standard utf-8 codec but gb18030 which is the most complexHye-Shik Chang2004-01-201-4/+4
* For whatever reason, these files had \r\r\n line endings on Windows,Tim Peters2004-01-181-8/+8
* Revert another local change that snuck into a whitespace normalizationTim Peters2004-01-181-2/+1
* Whitespace normalization.Tim Peters2004-01-1833-71/+60
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-1734-25/+2600
* __init__.py: keep it compatible with older python (True and False == 1 and 0)Gregory P. Smith2004-01-132-6/+17
* __all__: Remove freenet_b64encode and freenet_b64decode.Barry Warsaw2004-01-071-1/+0
* SF Patch #864863: Bisect C implementationRaymond Hettinger2004-01-052-15/+18
* [SF #866875] Add a specialized routine for one characterHye-Shik Chang2004-01-051-14/+55
* Exercise sorted() where possibleRaymond Hettinger2004-01-041-3/+1
* SF patch #868736: Disable GC for timeitRaymond Hettinger2004-01-041-1/+7
* More complete code coverage, including testing the new RFC 3548 support.Barry Warsaw2004-01-041-26/+181
* Added more complete RFC 3548 support for Base64, Base32, and Base16Barry Warsaw2004-01-041-9/+288
* The script now takes an optional command-line argument to specify how manyAlex Martelli2004-01-021-4/+19
* [Bug #812325 ] tarfile.close() can write out more bytes to the outputAndrew M. Kuchling2004-01-021-0/+1
* - Print correct exception even if source file changed since shell wasKurt B. Kaiser2004-01-022-2/+7
* SF Patch 681780: Faster commonprefix (OS independent)Raymond Hettinger2003-12-311-10/+7
* Strengthen the test for hash effectivenessRaymond Hettinger2003-12-311-4/+4
* Fixes to support CJKCodecs as per SF bug #852347. Actually, thisBarry Warsaw2003-12-301-19/+16
* Bump version number to 2.5.5Barry Warsaw2003-12-301-1/+1
* As part of fixing bug #829532, add a test case that exercises os.makedirsAndrew M. Kuchling2003-12-231-1/+36
* [Bug #829532] Invoking os.makedirs() with an argument that contains aAndrew M. Kuchling2003-12-231-0/+2
* Fix unicode.rsplit()'s bug that ignores separater on the end of string whenHye-Shik Chang2003-12-231-0/+2
* Make sure the UserDict copies do not share the same underlyingRaymond Hettinger2003-12-211-1/+1
* Remove self from the arguments for the function add_type().Walter Dörwald2003-12-191-1/+1
* Enable some unittests on FreeBSD.Hye-Shik Chang2003-12-192-3/+7
* Remove methods that are no longer called by urllib2.Jeremy Hylton2003-12-171-14/+0
* Guido grants a Christmas wish:Raymond Hettinger2003-12-178-76/+48
* Add methods to MockHTTPClass for modern httplib interface.Jeremy Hylton2003-12-171-51/+77
* Rewrite AbstractHTTPHandler to use modern httplib interface.Jeremy Hylton2003-12-171-25/+26
* Add rsplit method for UserString, too.Hye-Shik Chang2003-12-151-0/+2
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-152-0/+32