summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Move the sha tests to PyUnit.Fred Drake2001-05-222-22/+20
* Convert binhex regression test to PyUnit. We could use a better testFred Drake2001-05-221-40/+38
* Convert copy_reg test to PyUnit.Fred Drake2001-05-221-29/+19
* Remove unused import.Fred Drake2001-05-221-1/+0
* Simple conversion to PyUnit -- this test really needs more work!Fred Drake2001-05-221-9/+14
* Convert dospath test suite to PyUnit, adding a couple more cases forFred Drake2001-05-221-46/+55
* Re-write the rfc822 tests to use PyUnit.Fred Drake2001-05-221-138/+162
* Implementing an idea from Guido on the checkins list:Tim Peters2001-05-222-24/+25
* Convert time module tests to PyUnit.Fred Drake2001-05-221-37/+49
* Migrate the strop test to PyUnit.Fred Drake2001-05-222-84/+118
* create_message(): When os.link() doesn't exist, make a copy of the msgTim Peters2001-05-221-1/+6
* Add tests for the new .get() and .setdefault() methods of rfc822.MessageFred Drake2001-05-221-1/+19
* New test adapted from the ancient Demo/threads/bug.py.Tim Peters2001-05-221-0/+52
* Remove all files of expected output that contain only the name of theFred Drake2001-05-2165-65/+0
* If the file containing expected output does not exist, assume that itFred Drake2001-05-211-1/+6
* Re-write the mailbox test suite to use PyUnit. Cover a lot more groundFred Drake2001-05-212-22/+81
* Update a comment.Fred Drake2001-05-181-2/+2
* Simple conversion to PyUnit.Fred Drake2001-05-181-11/+19
* Simple conversion to PyUnit.Fred Drake2001-05-181-23/+20
* Added test suite for the new HTMLParser module, originally from theFred Drake2001-05-182-0/+255
* This patch changes the way the string .encode() method works slightlyMarc-André Lemburg2001-05-151-0/+19
* Add warnings to the strop module, for to those functions that reallyGuido van Rossum2001-05-151-0/+2
* Convert a couple of comments to docstrings -- PyUnit can use these whenFred Drake2001-05-141-2/+2
* pprint's workhorse _safe_repr() function took time quadratic in the # ofTim Peters2001-05-141-1/+17
* Convert the pprint test to use PyUnit.Fred Drake2001-05-141-35/+57
* SF bug[ #423781: pprint.isrecursive() broken.Tim Peters2001-05-142-0/+37
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-133-0/+87
* Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask".Tim Peters2001-05-138-30/+38
* unlink() would normally be found in the "os" module, so use it from there.Fred Drake2001-05-111-5/+7
* Make test_mutants stronger by also adding random keys during comparisons.Tim Peters2001-05-101-2/+17
* Change test_mmap.py to use test_support.TESTFN instead of hardcoded "foo",Tim Peters2001-05-101-108/+119
* Repair typos in comments.Tim Peters2001-05-101-4/+4
* Extend the weakref test suite to cover the complete mapping interface forFred Drake2001-05-101-4/+61
* SF bug #422121 Insecurities in dict comparison.Tim Peters2001-05-102-0/+139
* Guido has Spoken. Restore strop.replace()'s treatment of a 0 count asTim Peters2001-05-101-1/+3
* The strop module and test_strop.py believe replace() with a 0 countTim Peters2001-05-101-1/+1
* SF bug #422088: [OSF1 alpha] string.replace().Tim Peters2001-05-091-0/+6
* Update the tests for the fcntl module to check passing in file objects,Fred Drake2001-05-091-11/+21
* Trivial tests of urllib2 for recent SF bugJeremy Hylton2001-05-092-0/+18
* SF bug #422177: Results from .pyc differs from .pyTim Peters2001-05-081-0/+3
* SF patch #421922: Implement rich comparison for dicts.Tim Peters2001-05-081-0/+28
* SF patch 419176 from MvL; fixed bug 418977Jeremy Hylton2001-05-082-0/+21
* This is a test showing SF bug 422177. It won't trigger until I check inTim Peters2001-05-081-0/+30
* Generalize zip() to work with iterators.Tim Peters2001-05-062-2/+48
* Get rid of silly 5am "del" stmts.Tim Peters2001-05-051-2/+0
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-051-18/+6
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-051-0/+35
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-052-2/+57
* Make unicode.join() work nice with iterators. This also required a changeTim Peters2001-05-051-0/+41
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-053-6/+39