| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 59245-59254 via svnmerge from | Christian Heimes | 2007-12-01 | 2 | -4/+8 |
|
|
* | Correct a failing test after merge from trunk. | Amaury Forgeot d'Arc | 2007-11-30 | 1 | -2/+2 |
|
|
* | Merged revisions 59239-59244 via svnmerge from | Christian Heimes | 2007-11-30 | 1 | -4/+6 |
|
|
* | abc's are subclasses of _Abstract, not instances. | Christian Heimes | 2007-11-30 | 1 | -2/+2 |
|
|
* | Fixed problem with regrtest caused by the additional of objects to _abcoll. | Christian Heimes | 2007-11-30 | 1 | -1/+6 |
|
|
* | Merged revisions 59234-59238 via svnmerge from | Christian Heimes | 2007-11-30 | 1 | -55/+56 |
|
|
* | Backmerge -r59233:59232 | Christian Heimes | 2007-11-30 | 2 | -11/+1 |
|
|
* | Merged revisions 59226-59233 via svnmerge from | Christian Heimes | 2007-11-30 | 1 | -0/+34 |
|
|
* | Fix for bug #1109 | Christian Heimes | 2007-11-30 | 2 | -1/+11 |
|
|
* | long integer -> integer. | Georg Brandl | 2007-11-29 | 1 | -7/+7 |
|
|
* | Removed more types from the types module | Christian Heimes | 2007-11-29 | 2 | -4/+3 |
|
|
* | Merged revisions 59202-59211 via svnmerge from | Christian Heimes | 2007-11-28 | 1 | -0/+13 |
|
|
* | I forgot to remove the tests for new *blush* | Christian Heimes | 2007-11-28 | 1 | -158/+0 |
|
|
* | Added view and iterator types to collections / _abcoll | Christian Heimes | 2007-11-28 | 1 | -3/+43 |
|
|
* | Removed the new module | Christian Heimes | 2007-11-28 | 6 | -45/+10 |
|
|
* | #1496: revert str.translate() to the old version, and add | Georg Brandl | 2007-11-27 | 1 | -9/+28 |
|
|
* | Merged revisions 59193-59201 via svnmerge from | Christian Heimes | 2007-11-27 | 10 | -84/+55 |
|
|
* | Removed the API to create unbound methods and simplified the API for bound me... | Christian Heimes | 2007-11-27 | 14 | -76/+65 |
|
|
* | Merged revisions 59107-59186 via svnmerge from | Guido van Rossum | 2007-11-26 | 148 | -466/+758 |
|
|
* | Minor cleanup | Christian Heimes | 2007-11-26 | 1 | -1/+1 |
|
|
* | Patch from Georg Brandl and me for #1493 | Christian Heimes | 2007-11-25 | 18 | -113/+61 |
|
|
* | fix #1409: cell variables were not initialized, | Amaury Forgeot d'Arc | 2007-11-24 | 1 | -0/+11 |
|
|
* | Problem found while converting from PyBytes to PyString: | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -4/+5 |
|
|
* | Removed some leftovers from the str8 days | Christian Heimes | 2007-11-22 | 2 | -7/+0 |
|
|
* | Merged revisions 59077-59104 via svnmerge from | Guido van Rossum | 2007-11-22 | 2 | -4/+23 |
|
|
* | Add ABC ByteString which unifies bytes and bytearray (but not memoryview). | Guido van Rossum | 2007-11-21 | 2 | -5/+26 |
|
|
* | Convert the socket module to insist on bytes for input, and to return bytes | Guido van Rossum | 2007-11-21 | 7 | -13/+17 |
|
|
* | Fix an issue with str.translate() in IDLE -- str.translate() only accepts | Guido van Rossum | 2007-11-21 | 1 | -3/+4 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 26 | -231/+231 |
|
|
* | Merged revisions 59056-59076 via svnmerge from | Christian Heimes | 2007-11-20 | 2 | -14/+21 |
|
|
* | Another fix for test_shutil. Martin pointed out that it breaks some build bots | Christian Heimes | 2007-11-20 | 1 | -1/+3 |
|
|
* | Fixed bug #1470 | Christian Heimes | 2007-11-20 | 1 | -5/+2 |
|
|
* | Correct test_cvs on Windows, as suggested by Raghuram Devarakonda | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -2/+6 |
|
|
* | Oops, I missed this one again (test_univnewlines fails): | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -1/+1 |
|
|
* | Issue1395: Universal mode used to duplicate newlines when using read(1). | Amaury Forgeot d'Arc | 2007-11-19 | 2 | -97/+236 |
|
|
* | Merged revisions 59041-59055 via svnmerge from | Guido van Rossum | 2007-11-19 | 3 | -14/+64 |
|
|
* | Tweak the imports so this script will run stand-alone. | Guido van Rossum | 2007-11-19 | 1 | -2/+2 |
|
|
* | Merged revisions 59005-59040 via svnmerge from | Christian Heimes | 2007-11-18 | 3 | -0/+176 |
|
|
* | remove now-obsolete test_socket_ssl | Bill Janssen | 2007-11-17 | 2 | -249/+0 |
|
|
* | The _winreg module returns bytes which must be decoded to unicode, not encoded. | Christian Heimes | 2007-11-17 | 1 | -3/+3 |
|
|
* | Disable dup() of SSLSocket. I don't think it can be made to work. | Guido van Rossum | 2007-11-16 | 1 | -0/+4 |
|
|
* | This is roughly socket2.diff from issue 1378, with a few changes applied | Guido van Rossum | 2007-11-16 | 3 | -56/+45 |
|
|
* | Correct a failing test when test_import is run after test_coding: | Amaury Forgeot d'Arc | 2007-11-16 | 2 | -4/+9 |
|
|
* | Oops, forgot to test this after the merge. | Guido van Rossum | 2007-11-16 | 1 | -2/+2 |
|
|
* | Merged revisions 58947-59004 via svnmerge from | Guido van Rossum | 2007-11-16 | 3 | -6/+25 |
|
|
* | Fix some minor style nits. (I'll leave adding __all__ and making the | Guido van Rossum | 2007-11-16 | 1 | -46/+38 |
|
|
* | Correction for issue1134: all source files with a coding spec, except latin-1 | Amaury Forgeot d'Arc | 2007-11-15 | 1 | -1/+21 |
|
|
* | add the certificate for the Python SVN repository for testing SSL | Bill Janssen | 2007-11-15 | 1 | -0/+31 |
|
|
* | get SSL support to work again | Bill Janssen | 2007-11-15 | 2 | -440/+338 |
|
|
* | Patch 1144 by David Binger, fix for parser module. With unittest. | Guido van Rossum | 2007-11-15 | 1 | -0/+1 |
|
|