| Commit message (Expand) | Author | Age | Files | Lines |
* | Trivial tests of urllib2 for recent SF bug | Jeremy Hylton | 2001-05-09 | 2 | -0/+18 |
|
|
* | SF bug #422177: Results from .pyc differs from .py | Tim Peters | 2001-05-08 | 1 | -0/+3 |
|
|
* | SF patch #421922: Implement rich comparison for dicts. | Tim Peters | 2001-05-08 | 1 | -0/+28 |
|
|
* | SF patch 419176 from MvL; fixed bug 418977 | Jeremy Hylton | 2001-05-08 | 2 | -0/+21 |
|
|
* | This is a test showing SF bug 422177. It won't trigger until I check in | Tim Peters | 2001-05-08 | 1 | -0/+30 |
|
|
* | Generalize zip() to work with iterators. | Tim Peters | 2001-05-06 | 2 | -2/+48 |
|
|
* | Get rid of silly 5am "del" stmts. | Tim Peters | 2001-05-05 | 1 | -2/+0 |
|
|
* | Reimplement PySequence_Contains() and instance_contains(), so they work | Tim Peters | 2001-05-05 | 1 | -18/+6 |
|
|
* | Generalize PySequence_Count() (operator.countOf) to work with iterators. | Tim Peters | 2001-05-05 | 1 | -0/+35 |
|
|
* | Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. | Tim Peters | 2001-05-05 | 2 | -2/+57 |
|
|
* | Make unicode.join() work nice with iterators. This also required a change | Tim Peters | 2001-05-05 | 1 | -0/+41 |
|
|
* | Generalize tuple() to work nicely with iterators. | Tim Peters | 2001-05-05 | 3 | -6/+39 |
|
|
* | Generalize reduce() to work with iterators. | Tim Peters | 2001-05-04 | 1 | -0/+13 |
|
|
* | Purge redundant cut&paste line. | Tim Peters | 2001-05-03 | 1 | -2/+1 |
|
|
* | Generalize map() to work with iterators. | Tim Peters | 2001-05-03 | 1 | -0/+35 |
|
|
* | Remove redundant copy+paste code. | Tim Peters | 2001-05-03 | 1 | -3/+0 |
|
|
* | Generalize max(seq) and min(seq) to work with iterators. | Tim Peters | 2001-05-03 | 1 | -0/+35 |
|
|
* | Fix for bug #417030: "print '%*s' fails for unicode string" | Marc-André Lemburg | 2001-05-02 | 1 | -0/+6 |
|
|
* | Generalize filter(f, seq) to work with iterators. This also generalizes | Tim Peters | 2001-05-02 | 1 | -0/+44 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-05-02 | 1 | -2/+2 |
|
|
* | Added tests for Weak*Dictionary iterator support. | Fred Drake | 2001-05-02 | 1 | -10/+54 |
|
|
* | Generalize list(seq) to work with iterators. This also generalizes list() | Tim Peters | 2001-05-01 | 1 | -0/+32 |
|
|
* | Fix 2.1 nested scopes crash reported by Evan Simpson | Jeremy Hylton | 2001-04-27 | 2 | -0/+12 |
|
|
* | Update test to accomodate the change to the namespace_separator parameter | Fred Drake | 2001-04-25 | 2 | -10/+32 |
|
|
* | Add test suite for iterators. | Guido van Rossum | 2001-04-21 | 2 | -0/+247 |
|
|
* | Give UserDict new __contains__ and __iter__ methods. | Tim Peters | 2001-04-21 | 1 | -1/+15 |
|
|
* | Implement, test and document "key in dict" and "key not in dict". | Guido van Rossum | 2001-04-20 | 1 | -0/+4 |
|
|
* | Fix compileall.py so that it fails on SyntaxErrors | Jeremy Hylton | 2001-04-18 | 10 | -16/+11 |
|
|
* | Add a test case for Weak*Dictionary.update() that would have caught a | Fred Drake | 2001-04-16 | 1 | -0/+25 |
|
|
* | Change the test data to ask for class C from module __main__ rather | Guido van Rossum | 2001-04-16 | 1 | -2/+3 |
|
|
* | In order to make this test work on Windows, the test locale has to be | Guido van Rossum | 2001-04-15 | 1 | -2/+7 |
|
|
* | Set the SO_REUSEADDR socket option in the server thread -- this seems | Guido van Rossum | 2001-04-15 | 1 | -0/+1 |
|
|
* | Add "import thread" at the top of the module; this prevents us from | Guido van Rossum | 2001-04-14 | 2 | -0/+2 |
|
|
* | If the sunaudiodev module is available but we cannot find an audio | Fred Drake | 2001-04-14 | 1 | -1/+9 |
|
|
* | Added regression test for SF bug #415660 (failure to invalidate all | Fred Drake | 2001-04-13 | 1 | -5/+24 |
|
|
* | Fix typo in comment (the module is now called _testcapi, not _test). | Guido van Rossum | 2001-04-13 | 1 | -1/+1 |
|
|
* | Change error message raised when free variable is not yet bound. It | Jeremy Hylton | 2001-04-13 | 1 | -1/+2 |
|
|
* | Add test for SF bug #405427 | Jeremy Hylton | 2001-04-13 | 2 | -0/+36 |
|
|
* | Update to reflect new tokenize_test.py | Jeremy Hylton | 2001-04-13 | 1 | -8/+8 |
|
|
* | There's no need for the tokenize tests to include a SyntaxError. | Jeremy Hylton | 2001-04-13 | 1 | -1/+1 |
|
|
* | Patch #415777: new grouping strategy. | Martin v. Löwis | 2001-04-13 | 2 | -0/+38 |
|
|
* | Bug 415514 reported that e.g. | Tim Peters | 2001-04-12 | 1 | -4/+4 |
|
|
* | Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. | Tim Peters | 2001-04-12 | 1 | -0/+16 |
|
|
* | Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless of | Tim Peters | 2001-04-12 | 1 | -5/+1 |
|
|
* | Unixware 7 support by Billy G. Allie (SF patch 413011) | Guido van Rossum | 2001-04-11 | 3 | -3/+10 |
|
|
* | Test cases for examples of ext call error handling. | Jeremy Hylton | 2001-04-11 | 2 | -0/+40 |
|
|
* | Use the WeakKeyDictionary and WeakValueDictionary classes directly | Fred Drake | 2001-04-10 | 1 | -2/+2 |
|
|
* | Some other tests, when failing, don't always remove their TESTFN file. | Guido van Rossum | 2001-04-10 | 1 | -0/+6 |
|
|
* | When doing the quick test to see whether large files are supported, | Guido van Rossum | 2001-04-10 | 1 | -1/+1 |
|
|
* | When zlib can't be imported, zipfile raises RuntimeError, which causes | Guido van Rossum | 2001-04-10 | 1 | -0/+1 |
|
|