| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 58939-58946 via svnmerge from | Christian Heimes | 2007-11-12 | 1 | -35/+41 |
|
|
* | Fixed some of the bugs in the readline module. #1425 is still open and severa... | Christian Heimes | 2007-11-11 | 1 | -14/+19 |
|
|
* | Merged revisions 58886-58929 via svnmerge from | Guido van Rossum | 2007-11-10 | 1 | -7/+27 |
|
|
* | Issue 1406: use widechar api for os.environ, on Windows. | Thomas Heller | 2007-11-08 | 1 | -3/+65 |
|
|
* | Fixed bug #1081: file.seek allows float arguments | Christian Heimes | 2007-11-08 | 1 | -0/+4 |
|
|
* | Change a variable to Py_ssize_t to silence a compiler warning (and because it | Brett Cannon | 2007-11-06 | 1 | -1/+1 |
|
|
* | Remove an unused local variable. | Brett Cannon | 2007-11-06 | 1 | -1/+0 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 31 | -368/+340 |
|
|
* | Merged revisions 58817-58861 via svnmerge from | Guido van Rossum | 2007-11-05 | 1 | -15/+25 |
|
|
* | Merged revisions 58742-58816 via svnmerge from | Guido van Rossum | 2007-11-02 | 1 | -0/+4 |
|
|
* | Fixes issue1371 and reenables those tests. | Gregory P. Smith | 2007-11-01 | 1 | -1/+15 |
|
|
* | Merged revisions 58221-58741 via svnmerge from | Guido van Rossum | 2007-11-01 | 14 | -320/+549 |
|
|
* | Fixed bug in _fileio.c and test_pep277. On Windows IOError.filename was not s... | Christian Heimes | 2007-10-31 | 1 | -0/+4 |
|
|
* | Patch 1329 (partial) by Christian Heimes. | Guido van Rossum | 2007-10-30 | 1 | -9/+27 |
|
|
* | Get the locale and pwd tests working on the Solaris box where there | Neal Norwitz | 2007-10-27 | 2 | -4/+9 |
|
|
* | Try to get this test to pass on Win64 by making clean for ssize_t | Neal Norwitz | 2007-10-27 | 1 | -4/+6 |
|
|
* | Get rid of more uses of string and use unicode | Neal Norwitz | 2007-10-27 | 1 | -4/+1 |
|
|
* | Use unicode in more places. Fixes a problem with str8 + str in test. | Neal Norwitz | 2007-10-27 | 2 | -7/+11 |
|
|
* | Patch 1330 by Christian Heimes (with some TLC applied by myself). | Guido van Rossum | 2007-10-26 | 1 | -3/+22 |
|
|
* | Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), | Guido van Rossum | 2007-10-25 | 1 | -114/+0 |
|
|
* | A 'PyObject *' parameter in PyErr_Format must use %S parameter, not %s. | Thomas Heller | 2007-10-24 | 1 | -1/+1 |
|
|
* | Patch #1318 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-10-24 | 4 | -52/+48 |
|
|
* | Patch #1314 by Christian Heimes. | Guido van Rossum | 2007-10-23 | 1 | -3/+2 |
|
|
* | #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. | Georg Brandl | 2007-10-23 | 5 | -26/+21 |
|
|
* | #1061 (mainly by Thomas Wouters): use weak sets for abc caches. | Georg Brandl | 2007-10-23 | 1 | -0/+1 |
|
|
* | Make str/str8 comparisons return True/False for !=/==. | Brett Cannon | 2007-10-22 | 1 | -2/+2 |
|
|
* | Issue 1267, continued. | Guido van Rossum | 2007-10-22 | 1 | -1/+8 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+1 |
|
|
* | Patch #1272, by Christian Heimes and Alexandre Vassalotti. | Guido van Rossum | 2007-10-15 | 3 | -6/+6 |
|
|
* | Fix typo: formats -> format. (Only mattered in wide unicode builds.) | Guido van Rossum | 2007-10-14 | 1 | -1/+1 |
|
|
* | Fix some more memory leaks (in error conditions) introduced in r58455. | Neal Norwitz | 2007-10-14 | 1 | -3/+4 |
|
|
* | Fix the memory leak introduced in r58455. The buffer reference | Alexandre Vassalotti | 2007-10-14 | 1 | -1/+4 |
|
|
* | Remove the buffer API from PyUnicode as specified by PEP 3137. Also, | Alexandre Vassalotti | 2007-10-14 | 2 | -1/+11 |
|
|
* | Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i... | Travis E. Oliphant | 2007-10-13 | 1 | -6/+6 |
|
|
* | Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. | Guido van Rossum | 2007-10-13 | 1 | -1/+1 |
|
|
* | Fix Issue 1268 with the array module by backing-out the 'w' addition. All bu... | Travis E. Oliphant | 2007-10-12 | 1 | -18/+36 |
|
|
* | remove hotshot profiler from Py3k | Fred Drake | 2007-10-11 | 1 | -1645/+0 |
|
|
* | Remove unused variables | Neal Norwitz | 2007-10-08 | 2 | -2/+0 |
|
|
* | Breaking ground for PEP 3137 implementation: | Guido van Rossum | 2007-10-08 | 4 | -40/+21 |
|
|
* | Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. | Gregory P. Smith | 2007-10-06 | 1 | -1/+7 |
|
|
* | Delete now-unused static function Array_ass_slice(). | Guido van Rossum | 2007-09-25 | 1 | -42/+0 |
|
|
* | Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming | Thomas Heller | 2007-09-24 | 1 | -38/+38 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 5 | -11/+11 |
|
|
* | Remove more cruft leftover from nb_coerce. Rename nb_coerce to | Neil Schemenauer | 2007-09-21 | 1 | -1/+1 |
|
|
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 3 | -193/+683 |
|
|
* | Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. | Sean Reifscheider | 2007-09-17 | 2 | -8/+8 |
|
|
* | Added __format__ method to datetime.datetime, datetime.date, and datetime.time. | Eric Smith | 2007-09-11 | 1 | -0/+36 |
|
|
* | merge this from trunk: | Gregory P. Smith | 2007-09-09 | 1 | -1/+2 |
|
|
* | email address update | Gregory P. Smith | 2007-09-09 | 1 | -4/+4 |
|
|
* | Adds stand alone _md5 and _sha1 modules for use by hashlib on systems | Gregory P. Smith | 2007-09-09 | 4 | -4/+1102 |
|
|