summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* Remove methods that are no longer called by urllib2.Jeremy Hylton2003-12-171-14/+0
* Guido grants a Christmas wish:Raymond Hettinger2003-12-176-70/+47
* Add methods to MockHTTPClass for modern httplib interface.Jeremy Hylton2003-12-171-51/+77
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-151-0/+20
* SF patch 852995: add processors feature to urllib2Jeremy Hylton2003-12-141-29/+614
* SF #736962, port test_future to unittest, add a bit more coverage, by Walter ...Neal Norwitz2003-12-1311-47/+101
* Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%.Walter Dörwald2003-12-113-27/+54
* Move list and tuple tests from test_types.py to their own scripts:Walter Dörwald2003-12-087-514/+696
* Implement itertools.groupby()Raymond Hettinger2003-12-061-1/+107
* Remove extra copy of test_key_with_exception that somehow appearedMichael W. Hudson2003-12-041-7/+0
* Fixes and tests for various "holding pointers when arbitrary Python codeMichael W. Hudson2003-12-041-0/+45
* Typo repair; added some comments and horizontal whitespace.Tim Peters2003-12-041-9/+10
* Fix test_unicode_file errors on platforms without Unicode file support,Mark Hammond2003-12-032-19/+27
* Add parameters indent, width and depth to pprint.pprint() and pprint.pformat()Walter Dörwald2003-12-031-0/+6
* Patch #750542: pprint now will pretty print subclasses of list, tupleWalter Dörwald2003-12-031-4/+39
* Reduce the size of Big String and Big Binary tests to 2**14 (minus oneGuido van Rossum2003-12-031-2/+2
* Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work withMark Hammond2003-12-032-78/+148
* Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not beMark Hammond2003-12-031-0/+21
* As discussed on python-dev, added two extractor functions to theRaymond Hettinger2003-12-011-0/+39
* Add testcases for _winreg segfault (SF 851056).Guido van Rossum2003-11-301-1/+3
* Fix a bug discovered by Kalle Svensson: comparing sys.maxint toGuido van Rossum2003-11-291-1/+1
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-295-58/+49
* Make sure the list.sort's decorate step unwinds itself before returningRaymond Hettinger2003-11-281-0/+7
* Add optional fillchar argument to ljust(), rjust(), and center() string methods.Raymond Hettinger2003-11-261-3/+3
* * Checkin remaining documentationRaymond Hettinger2003-11-241-14/+59
* test_guess_all_types(): Use a more robust test for checking thatBarry Warsaw2003-11-231-4/+7
* * Simplify hash function and add test to show effectiveness of the hashRaymond Hettinger2003-11-231-13/+72
* Extend temporary hashability to remove() and discard().Raymond Hettinger2003-11-221-0/+10
* Allow temporary hashability for the __contains__ test.Raymond Hettinger2003-11-211-0/+2
* issubset() and issuperset() to work with general iterablesRaymond Hettinger2003-11-211-0/+4
* test_applesingle is an expected skip almost anywhere.Guido van Rossum2003-11-201-29/+40
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-0/+205
* test_applesingle is an expected skip on Win32Raymond Hettinger2003-11-201-0/+1
* Fix for [ 765456 ]: testAFakeZlib failed on platforms that use aJust van Rossum2003-11-181-0/+7
* Test the applesingle decoder.Jack Jansen2003-11-181-0/+72
* Various fixups (most suggested by Armin Rigo).Raymond Hettinger2003-11-171-0/+25
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-1612-36/+1206
* subtype_dealloc(): A more complete fix for critical bug 840829 +Tim Peters2003-11-131-0/+19
* Patch #839877: Remove unused lambda expression.Martin v. Löwis2003-11-131-4/+0
* SF bug 840829: weakref callbacks and gc corrupt memory.Tim Peters2003-11-121-0/+20
* Improve the implementation of itertools.tee().Raymond Hettinger2003-11-121-24/+31
* Update test to handle list.__reversed__().Raymond Hettinger2003-11-081-0/+1
* Convert heapq.py to a C implementation.Raymond Hettinger2003-11-081-1/+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-061-1/+19
* * Use weakref's of DBCursor objects for the iterator cursors to avoid aGregory P. Smith2003-11-031-3/+76
* * Fix the singlethreaded deadlocks occurring in the simple bsddb interface.Gregory P. Smith2003-11-021-1/+52
* Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2.Martin v. Löwis2003-10-311-0/+4
* Update test to include "sorted" in dir(list).Raymond Hettinger2003-10-291-1/+2
* Add list.sorted() classmethod.Raymond Hettinger2003-10-291-0/+58