| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove an unneeded import of 'warnings'. | Brett Cannon | 2006-12-13 | 1 | -1/+0 |
| | | |||||
| * | Fix typo. | Walter Dörwald | 2006-12-12 | 1 | -1/+1 |
| | | |||||
| * | Add test for SF bug 1576657 | Raymond Hettinger | 2006-12-08 | 1 | -0/+11 |
| | | |||||
| * | Patch #1610437: fix a tarfile bug with long filename headers. | Georg Brandl | 2006-12-06 | 1 | -9/+13 |
| | | |||||
| * | Patch #1371075: Make ConfigParser accept optional dict type | Martin v. Löwis | 2006-12-03 | 1 | -1/+45 |
| | | | | | for ordering, sorting, etc. | ||||
| * | Move xdrlib tests from the module into a separate test script, | Walter Dörwald | 2006-12-01 | 2 | -20/+54 |
| | | | | | port the tests to unittest and add a few new tests. | ||||
| * | a test for an error condition not covered by existing tests | Michael W. Hudson | 2006-11-23 | 1 | -0/+7 |
| | | | | | (noticed this when writing the equivalent code for pypy) | ||||
| * | Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig')) | Walter Dörwald | 2006-11-23 | 1 | -0/+4 |
| | | | | | SF bug #1601501. | ||||
| * | Patch #1070046: Marshal new-style objects like InstanceType | Martin v. Löwis | 2006-11-19 | 1 | -0/+9 |
| | | | | | in xmlrpclib. | ||||
| * | Add a test case of data w/ bytes > 127 | Andrew M. Kuchling | 2006-11-19 | 1 | -0/+3 |
| | | |||||
| * | Make cStringIO.truncate raise IOError for negative | Martin v. Löwis | 2006-11-19 | 1 | -0/+1 |
| | | | | | | arguments (even for -1). Fixes the last bit of #1359365. | ||||
| * | Patch [ 1586791 ] better error msgs for some TypeErrors | Georg Brandl | 2006-11-19 | 1 | -2/+2 |
| | | |||||
| * | Expand checking in test_sha | Andrew M. Kuchling | 2006-11-18 | 1 | -1/+15 |
| | | |||||
| * | Remove file-locking in MH.pack() method. | Andrew M. Kuchling | 2006-11-17 | 1 | -0/+15 |
| | | | | | | | | | | | | | | | | | | | This change looks massive but it's mostly a re-indenting after removing some try...finally blocks. Also adds a test case that does a pack() while the mailbox is locked; this test would have turned up bugs in the original code on some platforms. In both nmh and GNU Mailutils' implementation of MH-format mailboxes, no locking is done of individual message files when renaming them. The original mailbox.py code did do locking, which meant that message files had to be opened. This code was buggy on certain platforms (found through reading the code); there were code paths that closed the file object and then called _unlock_file() on it. Will backport to 25-maint once I see how the buildbots react to this patch. | ||||
| * | Bug #1588217: don't parse "= " as a soft line break in binascii's | Georg Brandl | 2006-11-16 | 1 | -1/+1 |
| | | | | | | a2b_qp() function, instead leave it in the string as quopri.decode() does. | ||||
| * | Patch #1355023: support whence argument for GzipFile.seek. | Martin v. Löwis | 2006-11-12 | 1 | -0/+11 |
| | | |||||
| * | Patch #1065257: Support passing open files as body in | Martin v. Löwis | 2006-11-12 | 1 | -1/+12 |
| | | | | | HTTPConnection.request(). | ||||
| * | [Bug #1569790] mailbox.Maildir.get_folder() loses factory information | Andrew M. Kuchling | 2006-11-09 | 1 | -1/+23 |
| | | | | | | | | Both the Maildir and MH classes had this bug; the patch fixes both classes and adds a test. Will backport to 25-maint. | ||||
| * | Correctly forward exception in instance_contains(). | Martin v. Löwis | 2006-11-08 | 1 | -0/+8 |
| | | | | | | Fixes #1591996. Patch contributed by Neal Norwitz. Will backport. | ||||
| * | Bug #1588287: fix invalid assertion for `1,2` in debug builds. | Neal Norwitz | 2006-11-04 | 1 | -0/+2 |
| | | | | | Will backport | ||||
| * | Whitespace normalization. | Tim Peters | 2006-11-03 | 11 | -20/+20 |
| | | |||||
| * | I'm assuming this is correct, it fixes the tests so they pass again | Neal Norwitz | 2006-10-29 | 1 | -0/+1 |
| | | |||||
| * | Add tests for incremental codecs with an errors | Walter Dörwald | 2006-10-29 | 1 | -0/+24 |
| | | | | | argument. | ||||
| * | Add tests for basic argument errors. | Walter Dörwald | 2006-10-29 | 1 | -0/+27 |
| | | |||||
| * | Move the check for openpty to the beginning. | Georg Brandl | 2006-10-29 | 1 | -5/+5 |
| | | |||||
| * | Remove leftover test output file. | Georg Brandl | 2006-10-29 | 1 | -29/+0 |
| | | |||||
| * | Convert test_openpty to unittest. | Georg Brandl | 2006-10-29 | 2 | -16/+18 |
| | | |||||
| * | Convert test_MimeWriter to unittest. | Georg Brandl | 2006-10-29 | 2 | -174/+185 |
| | | |||||
| * | Completely convert test_httplib to unittest. | Georg Brandl | 2006-10-29 | 2 | -103/+63 |
| | | |||||
| * | Convert test_cgi to unittest. | Georg Brandl | 2006-10-29 | 2 | -167/+135 |
| | | |||||
| * | Convert test_cookie to unittest. | Georg Brandl | 2006-10-29 | 2 | -73/+73 |
| | | |||||
| * | Convert test_types to unittest. | Georg Brandl | 2006-10-29 | 2 | -298/+270 |
| | | |||||
| * | Convert test_nis to unittest. | Georg Brandl | 2006-10-29 | 2 | -37/+37 |
| | | |||||
| * | Convert test_poll to unittest. | Georg Brandl | 2006-10-29 | 2 | -195/+140 |
| | | |||||
| * | Convert test_mmap to unittest. | Georg Brandl | 2006-10-29 | 2 | -276/+156 |
| | | |||||
| * | Bug #1576657: when setting a KeyError for a tuple key, make sure that | Georg Brandl | 2006-10-29 | 1 | -0/+10 |
| | | | | | the tuple isn't used as the "exception arguments tuple". | ||||
| * | Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders. | Georg Brandl | 2006-10-29 | 1 | -0/+2 |
| | | |||||
| * | Fix the new EncodedFile test to work with big endian platforms. | Georg Brandl | 2006-10-29 | 1 | -2/+2 |
| | | |||||
| * | Test assert if __debug__ is true. | Georg Brandl | 2006-10-29 | 1 | -4/+3 |
| | | |||||
| * | Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, and | Georg Brandl | 2006-10-29 | 1 | -1/+28 |
| | | | | | | fix all codecs file wrappers to work correctly with the "with" statement (bug #1586513). | ||||
| * | Fix test_modulefinder so it doesn't fail when run after test_distutils. | Neal Norwitz | 2006-10-28 | 1 | -0/+1 |
| | | |||||
| * | Fix bug #1565514, SystemError not raised on too many nested blocks. | Neal Norwitz | 2006-10-28 | 1 | -0/+31 |
| | | | | | | | | It seems like this should be a different error than SystemError, but I don't have any great ideas and SystemError was raised in 2.4 and earlier. Will backport. | ||||
| * | make test_grammar pass with python -O | Georg Brandl | 2006-10-28 | 1 | -2/+4 |
| | | |||||
| * | Convert test_opcodes to unittest. | Georg Brandl | 2006-10-28 | 2 | -105/+108 |
| | | |||||
| * | Convert test_math to unittest. | Georg Brandl | 2006-10-28 | 2 | -229/+207 |
| | | |||||
| * | Update outstanding bugs test file. | Georg Brandl | 2006-10-28 | 1 | -10/+5 |
| | | |||||
| * | Convert test_global, test_scope and test_grammar to unittest. | Georg Brandl | 2006-10-28 | 8 | -1288/+1263 |
| | | | | | | I tried to enclose all tests which must be run at the toplevel (instead of inside a method) in exec statements. | ||||
| * | Port test_bufio to unittest. | Walter Dörwald | 2006-10-28 | 1 | -55/+61 |
| | | |||||
| * | Modulefinder now handles absolute and relative imports, including | Thomas Heller | 2006-10-27 | 1 | -0/+263 |
| | | | | | | | tests. Will backport to release25-maint. | ||||
| * | WindowsError.str should display the windows error code, | Thomas Heller | 2006-10-27 | 1 | -0/+13 |
| | | | | | | | | not the posix error code; with test. Fixes #1576174. Will backport to release25-maint. | ||||
