summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Since abc._Abstract was replaces by a new type flags the regression test suit...Christian Heimes2008-03-033-4/+16
* Add test_main() functions to various tests where it was simple to do. Done soBrett Cannon2008-03-039-36/+63
* Add a note in the main test class' docstring that the order of execution of theBrett Cannon2008-03-031-2/+9
* Add a note in the main test class' docstring that the order of execution of theBrett Cannon2008-03-031-0/+4
* Move test_largefile over to using 'with' statements for open files.Brett Cannon2008-03-031-28/+18
* Refactor test_logging to use unittest. This should finally solve the flakinessBrett Cannon2008-03-031-2163/+751
* Modify import of test_support so that the code can also be used with aGregory P. Smith2008-03-0215-15/+73
* Made sqlite3 module's regression tests work with SQLite versions that don'tGerhard Häring2008-03-021-2/+3
* Give IDLE a release dateBarry Warsaw2008-03-011-1/+1
* bump idle version numberBarry Warsaw2008-03-011-1/+1
* Updated to pysqlite 2.4.1. Documentation additions will come later.Gerhard Häring2008-02-297-14/+298
* Fix docstring typo.Mark Dickinson2008-02-291-1/+1
* Handle the repeat keyword argument for itertools.product().Raymond Hettinger2008-02-291-0/+3
* Add __format__ method to Decimal, to support PEP 3101Mark Dickinson2008-02-292-0/+333
* Add alternate constructor for itertools.chain().Raymond Hettinger2008-02-281-0/+7
* Have itertools.chain() consume its inputs lazily instead of building a tuple ...Raymond Hettinger2008-02-281-2/+2
* Windows fix for signal test - skip it earlierChristian Heimes2008-02-281-5/+6
* Prevent SocketServer.ForkingMixIn from waiting on child processes that itJeffrey Yasskin2008-02-282-19/+47
* #2169: make generated HTML more validAndrew M. Kuchling2008-02-281-3/+4
* Thread.start() used sleep(0.000001) to make sure it didn't return before theJeffrey Yasskin2008-02-281-11/+10
* Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and makeJeffrey Yasskin2008-02-281-109/+108
* Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,Jeffrey Yasskin2008-02-282-48/+2
* Larger test rangeRaymond Hettinger2008-02-271-1/+1
* Add itertools.combinations().Raymond Hettinger2008-02-261-0/+24
* Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...Christian Heimes2008-02-261-1/+50
* Add a timing flag to Trace so you can see where slowness occursNeal Norwitz2008-02-261-4/+21
* Speed up this test by about 99%. Remove sleeps and replace with events.Neal Norwitz2008-02-261-65/+42
* Don't use a hard coded port. This test could hang/fail if the port is in use.Neal Norwitz2008-02-261-4/+25
* Revert part of r60927 which made invalid assumptions about the API offered by...Raymond Hettinger2008-02-251-3/+3
* Make sure the itertools filter functions give the same performance for func=b...Raymond Hettinger2008-02-251-0/+2
* Issue 2117. Update compiler module to handle class decorators.Facundo Batista2008-02-253-2/+19
* Use file descriptor for real stdoutAndrew M. Kuchling2008-02-251-1/+3
* Move .setupterm() output so that we don't try to call endwin() if it failsAndrew M. Kuchling2008-02-251-4/+3
* Fix a minor typo in a docstring.Brett Cannon2008-02-251-1/+1
* Create a db_home directory with a unique name so multiple users canNeal Norwitz2008-02-2417-78/+72
* Remove duplicate 'import re' in decimal.pyMark Dickinson2008-02-241-2/+1
* Issue 1742669. Now %d accepts very big float numbers.Facundo Batista2008-02-242-3/+30
* #1627: httplib now ignores negative Content-Length headers.Georg Brandl2008-02-242-0/+10
* #900744: If an invalid chunked-encoding header is sent by a server,Georg Brandl2008-02-242-1/+36
* #1506171: added operator.methodcaller().Georg Brandl2008-02-231-0/+18
* #1826: allow dotted attribute paths in operator.attrgetter.Georg Brandl2008-02-231-0/+20
* Added simple test case. Thanks Benjamin Peterson.Facundo Batista2008-02-231-0/+33
* In test_heapq and test_bisect, test both the Python and the C implementation.Georg Brandl2008-02-232-159/+234
* Use os.closerange() in popen2.Georg Brandl2008-02-231-5/+1
* Followup to r61011: Also avoid the reference cycle when the Thread's targetJeffrey Yasskin2008-02-232-8/+18
* Prevent classes like:Jeffrey Yasskin2008-02-232-0/+23
* #1389051, #1092502: fix excessively large allocations when using read() on a ...Andrew M. Kuchling2008-02-231-1/+1
* #1389051: IMAP module tries to read entire message in one chunk. Patch by Fr...Andrew M. Kuchling2008-02-231-1/+1
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-23142-173/+67
* #1433694: minidom's .normalize() failed to set .nextSibling for last element.Andrew M. Kuchling2008-02-232-0/+10