summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* 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
* Generalize reduce() to work with iterators.Tim Peters2001-05-041-0/+13
* Purge redundant cut&paste line.Tim Peters2001-05-031-2/+1
* Generalize map() to work with iterators.Tim Peters2001-05-031-0/+35
* Remove redundant copy+paste code.Tim Peters2001-05-031-3/+0
* Generalize max(seq) and min(seq) to work with iterators.Tim Peters2001-05-031-0/+35
* Fix for bug #417030: "print '%*s' fails for unicode string"Marc-André Lemburg2001-05-021-0/+6
* Generalize filter(f, seq) to work with iterators. This also generalizesTim Peters2001-05-021-0/+44
* Whitespace normalization.Tim Peters2001-05-021-2/+2
* Added tests for Weak*Dictionary iterator support.Fred Drake2001-05-021-10/+54
* Generalize list(seq) to work with iterators. This also generalizes list()Tim Peters2001-05-011-0/+32
* Fix 2.1 nested scopes crash reported by Evan SimpsonJeremy Hylton2001-04-272-0/+12
* Update test to accomodate the change to the namespace_separator parameterFred Drake2001-04-252-10/+32
* Add test suite for iterators.Guido van Rossum2001-04-212-0/+247
* Give UserDict new __contains__ and __iter__ methods.Tim Peters2001-04-211-1/+15
* Implement, test and document "key in dict" and "key not in dict".Guido van Rossum2001-04-201-0/+4
* Fix compileall.py so that it fails on SyntaxErrorsJeremy Hylton2001-04-1810-16/+11
* Add a test case for Weak*Dictionary.update() that would have caught aFred Drake2001-04-161-0/+25
* Change the test data to ask for class C from module __main__ ratherGuido van Rossum2001-04-161-2/+3
* In order to make this test work on Windows, the test locale has to beGuido van Rossum2001-04-151-2/+7
* Set the SO_REUSEADDR socket option in the server thread -- this seemsGuido van Rossum2001-04-151-0/+1