| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge in release25-maint r60793: | Gregory P. Smith | 2008-06-11 | 1 | -2/+13 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -7/+7 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -7/+7 |
|
|
* | Crashers of the day: Py_CLEAR must be used when there is a chance that the | Amaury Forgeot d'Arc | 2008-02-16 | 1 | -2/+1 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
|
|
* | Fix compilation warning. | Georg Brandl | 2007-08-08 | 1 | -1/+1 |
|
|
* | Revert the fix for #1548891, it broke backwards compatibility with arbitrary ... | Georg Brandl | 2007-08-08 | 1 | -2/+5 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -6/+4 |
|
|
* | Merge change 54909 from release25-maint: Fix several minor issues discovered... | Kristján Valur Jónsson | 2007-04-25 | 1 | -4/+12 |
|
|
* | Make cStringIO.truncate raise IOError for negative | Martin v. Löwis | 2006-11-19 | 1 | -1/+11 |
|
|
* | newIobject(): repaired incorrect cast to quiet MSVC warning. | Tim Peters | 2006-10-18 | 1 | -1/+1 |
|
|
* | Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode | Georg Brandl | 2006-10-12 | 1 | -4/+2 |
|
|
* | Remove unnecessary casts from type object initializers. | Georg Brandl | 2006-03-30 | 1 | -13/+13 |
|
|
* | SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError | Walter Dörwald | 2006-03-15 | 1 | -1/+2 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -0/+1 |
|
|
* | Remove UNLESS. | Martin v. Löwis | 2006-03-01 | 1 | -29/+28 |
|
|
* | Silence gcc (4.0.x) warning about use of uninitialized value. | Thomas Wouters | 2006-03-01 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -3/+3 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -24/+31 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+1 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
|
|
* | Patches #1298449 and #1298499: Add some missing checks for error | Michael W. Hudson | 2005-09-22 | 1 | -7/+15 |
|
|
* | Patch 1012740: cStringIO's truncate doesn't | Tim Peters | 2004-08-21 | 1 | -0/+1 |
|
|
* | sizeof(char) is 1, by definition, so get rid of that expression in | Tim Peters | 2004-06-27 | 1 | -5/+4 |
|
|
* | SF patch #907403: Improvements to cStringIO.writelines() | Raymond Hettinger | 2004-03-08 | 1 | -28/+23 |
|
|
* | Speed-up the joiner call by avoiding Py_BuildValue(). | Raymond Hettinger | 2004-02-27 | 1 | -1/+5 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -1/+1 |
|
|
* | reverting to 2.41 version (distinct tp_names) - will add verbiage to the | Skip Montanaro | 2003-08-11 | 1 | -2/+2 |
|
|
* | shit - just change the visible name, not the comments - strictly speaking, | Skip Montanaro | 2003-08-11 | 1 | -3/+3 |
|
|
* | typos | Skip Montanaro | 2003-08-11 | 1 | -3/+3 |
|
|
* | SF bug #770485: cStringIO does not set closed attr | Raymond Hettinger | 2003-08-08 | 1 | -2/+22 |
|
|
* | SF patch 695710: fix bug 678519: cStringIO self iterator | Raymond Hettinger | 2003-04-24 | 1 | -65/+56 |
|
|
* | SF patch 660559: Use METH_O and METH_NOARGS where possible | Raymond Hettinger | 2003-01-03 | 1 | -33/+19 |
|
|
* | SF bug 601775 - some int results that should be bool. | Guido van Rossum | 2002-09-01 | 1 | -1/+2 |
|
|
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -3/+3 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -48/+35 |
|
|
* | See discussion at SF bug 547537. | Guido van Rossum | 2002-04-29 | 1 | -1/+1 |
|
|
* | Removed old Digital Creations copyright/license notices (with | Guido van Rossum | 2002-04-04 | 1 | -53/+0 |
|
|
* | Fix SF bug #526518 | Jeremy Hylton | 2002-03-08 | 1 | -1/+1 |
|
|
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -2/+2 |
|
|
* | O_cwrite(): rewrote for clarity, replacing all the (Oobject *)self | Guido van Rossum | 2001-12-07 | 1 | -16/+17 |
|
|
* | StringIO patch #462596: let's [c]StringIO accept read buffers on | Marc-André Lemburg | 2001-09-24 | 1 | -9/+5 |
|
|
* | I_getiter(): Function for the tp_iter slot of Itype so that | Barry Warsaw | 2001-09-22 | 1 | -20/+45 |
|
|
* | In O_writelines: Replace use of string.joinfields with "".join. | Jeremy Hylton | 2001-02-09 | 1 | -8/+11 |
|
|
* | Added a new "base" type, IOobject for which most of the | Jim Fulton | 2000-10-06 | 1 | -285/+355 |
|
|
* | Implement readlines function. Closes Bug #110686. | Martin v. Löwis | 2000-09-19 | 1 | -0/+36 |
|
|
* | Use METH_VARARGS instead of numeric constant 1 in method def. tables | Andrew M. Kuchling | 2000-08-03 | 1 | -1/+2 |
|
|
* | ANSIfy some more forward declarations. | Thomas Wouters | 2000-07-24 | 1 | -1/+1 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
|
|
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
|
|