summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12143-537/+520
* Fix indentation error in testGetServByName and rewrite loop to avoid clumsySkip Montanaro2004-02-101-5/+2
* Make reversed() transparent with respect to length.Raymond Hettinger2004-02-101-0/+4
* Give itertools.repeat() a length method.Raymond Hettinger2004-02-101-1/+7
* SF bug #892492: Multiple close() for asyncore.dispatcher.Raymond Hettinger2004-02-081-0/+1
* Let reversed() work with itself.Raymond Hettinger2004-02-081-0/+4
* Make deque.rotate() smarter. Beef-up related tests.Raymond Hettinger2004-02-081-9/+43
* Patch #868499, adds -T option for code coverage. The implementation is aBarry Warsaw2004-02-071-30/+51
* * Incorporate Skip's suggestions for documentation (explain the word dequeRaymond Hettinger2004-02-071-0/+12
* no longer support linux1 platformSkip Montanaro2004-02-072-247/+0
* no longer support sunos4 platformSkip Montanaro2004-02-074-119/+0
* Use collection.deque() instead of a list for a FIFO queue.Raymond Hettinger2004-02-071-5/+10
* * Fix ref counting in extend() and extendleft().Raymond Hettinger2004-02-071-0/+4
* 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