| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. | Georg Brandl | 2008-06-04 | 1 | -2/+1 |
|
|
* | Revert r63934 -- it was mixing two patches. | Georg Brandl | 2008-06-04 | 1 | -1/+2 |
|
|
* | Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. | Georg Brandl | 2008-06-04 | 1 | -2/+1 |
|
|
* | Change all functions that expect one unicode character to accept a pair of | Walter Dörwald | 2008-06-03 | 1 | -73/+74 |
|
|
* | Removed the old cStringIO module. | Alexandre Vassalotti | 2008-06-02 | 1 | -754/+0 |
|
|
* | Forward-port PYTHONIOENCODING. | Martin v. Löwis | 2008-06-02 | 1 | -0/+1 |
|
|
* | add the gestalt module back as _gestalt | Benjamin Peterson | 2008-05-29 | 1 | -0/+72 |
|
|
* | Merged revisions 63791-63792 via svnmerge from | Thomas Heller | 2008-05-29 | 1 | -21/+21 |
|
|
* | Make db modules' error classes inherit IOError. | Georg Brandl | 2008-05-28 | 2 | -2/+3 |
|
|
* | Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via sv... | Benjamin Peterson | 2008-05-26 | 1 | -0/+194 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 40 | -436/+436 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 15 | -82/+82 |
|
|
* | Create the dbm package from PEP 3108. #2881. | Georg Brandl | 2008-05-26 | 4 | -14/+14 |
|
|
* | Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. | Georg Brandl | 2008-05-25 | 2 | -4/+4 |
|
|
* | #2879: rename _winreg to winreg. | Georg Brandl | 2008-05-25 | 1 | -1/+1 |
|
|
* | Merged revisions 63395-63396,63511,63522-63523 via svnmerge from | Thomas Heller | 2008-05-23 | 1 | -0/+1 |
|
|
* | Remove duplicate check for PyLong_Check(). It was checked above. | Neal Norwitz | 2008-05-20 | 1 | -3/+0 |
|
|
* | Tkinter, step 5: remove lib-tk subdirectory and update all places where it wa... | Georg Brandl | 2008-05-17 | 1 | -5/+1 |
|
|
* | Merged revisions 63361-63373,63375,63377-63380 via svnmerge from | Alexandre Vassalotti | 2008-05-16 | 3 | -1/+9 |
|
|
* | Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 ... | Alexandre Vassalotti | 2008-05-16 | 1 | -2/+9 |
|
|
* | Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,... | Alexandre Vassalotti | 2008-05-15 | 1 | -12/+54 |
|
|
* | Fixed refleak in _testcapi.test_s_code. | Alexandre Vassalotti | 2008-05-15 | 1 | -0/+1 |
|
|
* | #2798: PyArg_ParseTuple did not correctly handle the "s" code in case of unic... | Amaury Forgeot d'Arc | 2008-05-12 | 1 | -0/+33 |
|
|
* | Rename copy_reg module to copyreg. | Alexandre Vassalotti | 2008-05-11 | 1 | -1/+1 |
|
|
* | Revert the temporary change in r62624 | Mark Dickinson | 2008-05-09 | 1 | -11/+3 |
|
|
* | Move variable declaration to the top of the block, | Amaury Forgeot d'Arc | 2008-05-08 | 1 | -1/+2 |
|
|
* | Merged revisions 62734,62736,62748,62769 via svnmerge from | Christian Heimes | 2008-05-08 | 1 | -0/+620 |
|
|
* | Fixed bytes naming in the docstrings of _bytesio.c. | Alexandre Vassalotti | 2008-05-08 | 1 | -3/+3 |
|
|
* | Reverted (partially) patch r62667 to zipimport.c. | Alexandre Vassalotti | 2008-05-07 | 1 | -2/+3 |
|
|
* | Fixed docstring of _bytesio._BytesIO.writelines(). | Alexandre Vassalotti | 2008-05-07 | 1 | -3/+4 |
|
|
* | Changed _bytesio.c to avoid comparing a signed with an unsigned value. | Alexandre Vassalotti | 2008-05-07 | 1 | -10/+2 |
|
|
* | Merged revisions 62774-62775,62785,62787-62788 via svnmerge from | Christian Heimes | 2008-05-06 | 1 | -1/+10 |
|
|
* | Silence a compiler warning | Christian Heimes | 2008-05-06 | 1 | -1/+1 |
|
|
* | Added fast alternate io.BytesIO implementation and its test suite. | Alexandre Vassalotti | 2008-05-06 | 2 | -48/+760 |
|
|
* | Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,... | Christian Heimes | 2008-05-04 | 6 | -10/+166 |
|
|
* | Issue #1950: Fixed misusage of PyUnicode_AsString(). | Alexandre Vassalotti | 2008-05-03 | 3 | -18/+14 |
|
|
* | One more attempt to track down Debian/alpha test_math failures: | Mark Dickinson | 2008-05-02 | 1 | -3/+11 |
|
|
* | Whoops. errno should only be tested when the result is finite. | Mark Dickinson | 2008-05-01 | 1 | -4/+4 |
|
|
* | Make floating-point exception error messages slightly more verbose: in | Mark Dickinson | 2008-04-30 | 1 | -10/+13 |
|
|
* | Merged revisions 60056-60071,60073-60127,60129-60261,60263-60284,60286-62589,... | Thomas Heller | 2008-04-30 | 5 | -2/+215 |
|
|
* | Merged revisions 62481 via svnmerge from | Thomas Heller | 2008-04-24 | 3 | -50/+133 |
|
|
* | Merged revisions 62420-62421,62423-62424 via svnmerge from | Christian Heimes | 2008-04-21 | 2 | -2/+47 |
|
|
* | Merged revisions 62386-62387,62389-62393,62396,62400-62402,62407,62409-62410,... | Christian Heimes | 2008-04-20 | 2 | -139/+193 |
|
|
* | Merged revisions 62380,62382-62383 via svnmerge from | Christian Heimes | 2008-04-19 | 2 | -233/+1235 |
|
|
* | Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-... | Neal Norwitz | 2008-04-15 | 1 | -1/+1 |
|
|
* | Merged revisions 62338 via svnmerge from | Thomas Heller | 2008-04-14 | 3 | -0/+80 |
|
|
* | Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,... | Christian Heimes | 2008-04-13 | 3 | -4/+12 |
|
|
* | Removed unused variable. | Alexandre Vassalotti | 2008-04-12 | 1 | -2/+0 |
|
|
* | Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-... | Christian Heimes | 2008-04-09 | 3 | -97/+4 |
|
|
* | Merged revisions 62177-62178,62180-62193 via svnmerge from | Martin v. Löwis | 2008-04-07 | 1 | -3/+4 |
|
|