summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* * Silence a test failure that resulted when test_site was run byRaymond Hettinger2004-06-271-7/+10
* Massive performance improvement for C extension and builtin tracing codeNicholas Bastin2004-06-251-3/+3
* Bug 975996: Add _PyTime_DoubleToTimet to C APITim Peters2004-06-202-0/+35
* shutil.move() will raise an exception when trying to move a directory intoBrett Cannon2004-06-191-2/+14
* Reverse argument order for nsmallest() and nlargest().Raymond Hettinger2004-06-151-4/+4
* One unit test for distutils is not much, but is more than we had yesterday.Fred Drake2004-06-151-0/+17
* Patch #826074: cmath.log optional base argument, fixes #823209Raymond Hettinger2004-06-141-2/+19
* Add heapq to list of __all__ checks.Raymond Hettinger2004-06-131-0/+1
* Install C version of heapq.nsmallest().Raymond Hettinger2004-06-131-6/+19
* note a really bad test (no time to fix now)Michael W. Hudson2004-06-121-0/+1
* Improve the memory performance and speed of heapq.nsmallest() by usingRaymond Hettinger2004-06-121-0/+1
* lightly modified version of my patchMichael W. Hudson2004-06-111-24/+31
* fix a poorly worded error messageAnthony Baxter2004-06-111-1/+1
* Convert test_heapq.py to unittests.Raymond Hettinger2004-06-101-86/+90
* SF patch #969791: Add nlargest() and nsmallest() to heapq.Raymond Hettinger2004-06-101-1/+10
* test_devnull(): Use assertEqual() instead of an assert stmt.Tim Peters2004-06-081-1/+1
* Removed test_sitepackages test. Skip discovered that it only passed if PythonBrett Cannon2004-06-081-8/+0
* Feature request #935915: Add os.path.devnull.Martin v. Löwis2004-06-081-0/+9
* SF 952807: Unpickling pickled instances of subclasses of datetime.date,Tim Peters2004-06-071-0/+34
* Try to improve test coverage for utime()Neal Norwitz2004-06-061-0/+4
* Look for the multibyte codec map files in the parent directory tooNeal Norwitz2004-06-061-2/+7
* add -L flag to cause leaks(1) command to run just before exitSkip Montanaro2004-06-061-2/+13
* Remove a number of tests that differ only in input data size. It seemsNeil Schemenauer2004-06-051-161/+59
* Remove lots of magic constants.Neil Schemenauer2004-06-051-23/+38
* Rewrote to use temporary files instead of StringIO objects in most places.Skip Montanaro2004-06-051-113/+253
* [Bug #921657] Allow '@' in unquoted HTML attributes. Not strictly legal acco...Andrew M. Kuchling2004-06-051-0/+4
* [Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback l...Andrew M. Kuchling2004-06-051-2/+2
* Fix a bug that robotparser starves memory when the server responsesHye-Shik Chang2004-06-051-0/+34
* [Bug #841757] Exercise handling of Unicode stringsAndrew M. Kuchling2004-06-051-0/+2
* Refactored site.py into functions. Also moved over to using sets.Brett Cannon2004-06-051-0/+199
* Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald)Hye-Shik Chang2004-06-041-21/+2
* Fix typo.Hye-Shik Chang2004-06-041-1/+1
* Add iswide() and width() method for UserString according as theHye-Shik Chang2004-06-042-1/+27
* SF #965425: fix so hyphenated words surrounded by punctuation areGreg Ward2004-06-031-1/+18
* Rename class attribute containing the class to be tested, so the name is theWalter Dörwald2004-06-025-16/+16
* Remove pre moduleAndrew M. Kuchling2004-06-021-3/+0
* - SF #962502: Add two more methods for unicode type; width() andHye-Shik Chang2004-06-021-0/+20
* Copyright year changedVinay Sajip2004-06-021-1/+1
* test_hash(): The test here is different enough from the one in the bugTim Peters2004-06-011-3/+7
* [Bug #962631] Fix typo reported by Bryan BlackburnAndrew M. Kuchling2004-06-011-1/+1
* SF bug #942952: Weakness in tuple hashRaymond Hettinger2004-06-011-0/+19
* Patch #963318: Add support for client-side cookie management.Martin v. Löwis2004-05-312-23/+1696
* Port the dictionary tests from test_types.py to unittest. Collect as muchWalter Dörwald2004-05-317-361/+705
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-312-0/+22
* Add weakref support to array.array and file objects.Raymond Hettinger2004-05-312-0/+25
* Make sets and deques weak referencable.Raymond Hettinger2004-05-302-0/+15
* * teach repr.repr() about collections.deque()Raymond Hettinger2004-05-211-0/+4
* * Updated repr.py to handle set() and frozenset().Raymond Hettinger2004-05-211-0/+14
* Add a test to verify an early call to iter() on the outermost forRaymond Hettinger2004-05-201-0/+9
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-194-1/+304