| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 1 | -8/+8 |
* | Issue #10212: Support new buffer interface for struct.unpack and | Kristján Valur Jónsson | 2013-03-19 | 1 | -24/+25 |
* | Issue #13555: cPickle now supports files larger than 2 GiB. | Serhiy Storchaka | 2013-02-12 | 1 | -5/+2 |
* | Issue #7358: cStringIO.StringIO now supports writing to and reading from | Serhiy Storchaka | 2013-02-09 | 1 | -32/+53 |
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -1/+5 |
* | Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode | Antoine Pitrou | 2011-10-22 | 1 | -1/+5 |
* | improve performance of writing past the end of the file for cStringIO | Fred Drake | 2010-10-11 | 1 | -40/+18 |
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -368/+368 |
* | Backported PyCapsule from 3.1, and converted most uses of | Larry Hastings | 2010-03-25 | 1 | -2/+2 |
* | 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 |