| Commit message (Expand) | Author | Age | Files | Lines |
* | Breaking ground for PEP 3137 implementation: | Guido van Rossum | 2007-10-08 | 9 | -130/+20 |
|
|
* | Patch # 1145 by Thomas Lee: | Guido van Rossum | 2007-09-27 | 3 | -7/+10 |
|
|
* | Merged revisions 58211-58220 via svnmerge from | Thomas Wouters | 2007-09-20 | 1 | -0/+32 |
|
|
* | Merged revisions 58203-58210 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -0/+9 |
|
|
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 160 | -2642/+58688 |
|
|
* | Fix for bug 1148: str/bytes issue in httplib's _safe_read(). | Guido van Rossum | 2007-09-12 | 1 | -1/+1 |
|
|
* | Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() | Guido van Rossum | 2007-09-11 | 1 | -0/+14 |
|
|
* | Added __format__ method to datetime.datetime, datetime.date, and datetime.time. | Eric Smith | 2007-09-11 | 1 | -0/+78 |
|
|
* | Merged revisions 58053-58090 via svnmerge from | Thomas Wouters | 2007-09-10 | 1 | -3/+6 |
|
|
* | Bug # 1125 (my code). | Guido van Rossum | 2007-09-10 | 1 | -4/+50 |
|
|
* | merge this from trunk: | Gregory P. Smith | 2007-09-09 | 1 | -9/+7 |
|
|
* | email address update | Gregory P. Smith | 2007-09-09 | 1 | -1/+1 |
|
|
* | Merged revisions 57778-58052 via svnmerge from | Thomas Wouters | 2007-09-08 | 5 | -30/+34 |
|
|
* | Add REPORT_NDIFF option to o test that was hard to debug recently. | Guido van Rossum | 2007-09-08 | 1 | -0/+1 |
|
|
* | Forgot to run the tests after making the places and msg argument keyword-only. | Jeffrey Yasskin | 2007-09-07 | 2 | -6/+6 |
|
|
* | Check in some documentation tweaks for PEP 3141, add some tests, and implement | Jeffrey Yasskin | 2007-09-07 | 3 | -13/+4 |
|
|
* | Add a test for fail*AlmostEqual, including the new support for complex numbers. | Jeffrey Yasskin | 2007-09-07 | 1 | -1/+22 |
|
|
* | Use an event variable to wait for the server to be ready, not time.sleep(). | Guido van Rossum | 2007-09-06 | 1 | -3/+5 |
|
|
* | Fix doctest failure introduced by r57949. | Guido van Rossum | 2007-09-05 | 1 | -1/+1 |
|
|
* | Changed some ValueError's to KeyError and IndexError. | Eric Smith | 2007-09-04 | 1 | -15/+16 |
|
|
* | Fix segfault discovered by Ron Adam. Not checking for terminating right brac... | Eric Smith | 2007-09-03 | 1 | -0/+2 |
|
|
* | Patch #1076: Use wide API for registry functions. | Martin v. Löwis | 2007-09-03 | 1 | -13/+17 |
|
|
* | Fix refleaks in test_with caused by reusing the same exception instance over ... | Collin Winter | 2007-09-01 | 1 | -2/+4 |
|
|
* | Fix refleaks exposed by test_raise. | Collin Winter | 2007-09-01 | 1 | -0/+24 |
|
|
* | Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking... | Eric Smith | 2007-09-01 | 2 | -5/+10 |
|
|
* | Restore test_email for a1. It passes completely. | Barry Warsaw | 2007-08-31 | 1 | -0/+13 |
|
|
* | string.maketrans() now produces translation tables for bytes.translate() -- w... | Georg Brandl | 2007-08-31 | 2 | -5/+5 |
|
|
* | Revert 57722. Move error dialog APIs to msvcrt instead, | Martin v. Löwis | 2007-08-31 | 1 | -2/+18 |
|
|
* | Fix test_startfile and remove duplicated test. | Thomas Heller | 2007-08-31 | 1 | -8/+0 |
|
|
* | Force test_mailbox and test_old_mailbox into submission. | Guido van Rossum | 2007-08-31 | 2 | -2/+4 |
|
|
* | Changed signature of string.Formatter.get_field, per suggestion by | Eric Smith | 2007-08-31 | 1 | -0/+22 |
|
|
* | Fixed test name. | Eric Smith | 2007-08-31 | 1 | -1/+1 |
|
|
* | Added test cases for string.Formatter subclassing. | Eric Smith | 2007-08-31 | 2 | -8/+53 |
|
|
* | Cut test_raise down to size. | Collin Winter | 2007-08-31 | 1 | -278/+0 |
|
|
* | Fix test_smtplib by munging asynchat some more. | Thomas Wouters | 2007-08-31 | 1 | -2/+2 |
|
|
* | Issue #1066: implement PEP 3109, 2/3 of PEP 3134. | Collin Winter | 2007-08-31 | 9 | -20/+494 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 11 | -114/+42 |
|
|
* | Merged revisions 57772-57777 via svnmerge from | Thomas Wouters | 2007-08-30 | 1 | -2/+3 |
|
|
* | Added format tests. | Eric Smith | 2007-08-30 | 3 | -10/+22 |
|
|
* | Merged revisions 57620-57771 via svnmerge from | Thomas Wouters | 2007-08-30 | 10 | -19/+240 |
|
|
* | Explicitly use UTF-8 as the encoding for the normalization file. | Martin v. Löwis | 2007-08-30 | 2 | -4/+4 |
|
|
* | Calling execvp with an empty argument list raises ValueError, but we | Thomas Heller | 2007-08-30 | 1 | -1/+1 |
|
|
* | Enable the trunc() test. | Guido van Rossum | 2007-08-30 | 1 | -2/+1 |
|
|
* | Add numbers.py. I suspect this is an old version, but Jeffrey is out | Guido van Rossum | 2007-08-30 | 1 | -0/+53 |
|
|
* | Forbid an empty argument list in execv call. | Thomas Heller | 2007-08-30 | 1 | -0/+3 |
|
|
* | Two changes (not enough to make the test pass though) having to do with | Guido van Rossum | 2007-08-30 | 1 | -2/+3 |
|
|
* | Stop testing for encoded file names, as Python 3 does | Martin v. Löwis | 2007-08-30 | 1 | -64/+1 |
|
|
* | Try to fix test_plistlib so it uses bytes consistently in this call | Neal Norwitz | 2007-08-30 | 1 | -1/+1 |
|
|
* | Write bytes instead of unicode | Neal Norwitz | 2007-08-30 | 1 | -20/+20 |
|
|
* | Since the filename is encoded, we must add bytes to it. The test | Neal Norwitz | 2007-08-30 | 1 | -1/+1 |
|
|