summaryrefslogtreecommitdiff
path: root/Modules/cStringIO.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-8/+8
* Issue #10212: Support new buffer interface for struct.unpack andKristján Valur Jónsson2013-03-191-24/+25
* Issue #13555: cPickle now supports files larger than 2 GiB.Serhiy Storchaka2013-02-121-5/+2
* Issue #7358: cStringIO.StringIO now supports writing to and reading fromSerhiy Storchaka2013-02-091-32/+53
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+5
* Issue #1548891: The cStringIO.StringIO() constructor now encodes unicodeAntoine Pitrou2011-10-221-1/+5
* improve performance of writing past the end of the file for cStringIOFred Drake2010-10-111-40/+18
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-368/+368
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-2/+2
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-2/+13
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-7/+7
* Renamed PyString to PyBytesChristian Heimes2008-05-261-7/+7
* Crashers of the day: Py_CLEAR must be used when there is a chance that theAmaury Forgeot d'Arc2008-02-161-2/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-2/+2
* Fix compilation warning.Georg Brandl2007-08-081-1/+1
* Revert the fix for #1548891, it broke backwards compatibility with arbitrary ...Georg Brandl2007-08-081-2/+5
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-6/+4
* Merge change 54909 from release25-maint: Fix several minor issues discovered...Kristján Valur Jónsson2007-04-251-4/+12
* Make cStringIO.truncate raise IOError for negativeMartin v. Löwis2006-11-191-1/+11
* newIobject(): repaired incorrect cast to quiet MSVC warning.Tim Peters2006-10-181-1/+1
* Bug #1548891: The cStringIO.StringIO() constructor now encodes unicodeGeorg Brandl2006-10-121-4/+2
* Remove unnecessary casts from type object initializers.Georg Brandl2006-03-301-13/+13
* SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueErrorWalter Dörwald2006-03-151-1/+2
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-0/+1
* Remove UNLESS.Martin v. Löwis2006-03-011-29/+28
* Silence gcc (4.0.x) warning about use of uninitialized value.Thomas Wouters2006-03-011-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-24/+31
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Patches #1298449 and #1298499: Add some missing checks for errorMichael W. Hudson2005-09-221-7/+15
* Patch 1012740: cStringIO's truncate doesn'tTim Peters2004-08-211-0/+1
* sizeof(char) is 1, by definition, so get rid of that expression inTim Peters2004-06-271-5/+4
* SF patch #907403: Improvements to cStringIO.writelines()Raymond Hettinger2004-03-081-28/+23
* Speed-up the joiner call by avoiding Py_BuildValue().Raymond Hettinger2004-02-271-1/+5
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-1/+1
* reverting to 2.41 version (distinct tp_names) - will add verbiage to theSkip Montanaro2003-08-111-2/+2
* shit - just change the visible name, not the comments - strictly speaking,Skip Montanaro2003-08-111-3/+3
* typosSkip Montanaro2003-08-111-3/+3
* SF bug #770485: cStringIO does not set closed attrRaymond Hettinger2003-08-081-2/+22
* SF patch 695710: fix bug 678519: cStringIO self iteratorRaymond Hettinger2003-04-241-65/+56
* SF patch 660559: Use METH_O and METH_NOARGS where possibleRaymond Hettinger2003-01-031-33/+19
* SF bug 601775 - some int results that should be bool.Guido van Rossum2002-09-011-1/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-3/+3
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-48/+35
* See discussion at SF bug 547537.Guido van Rossum2002-04-291-1/+1
* Removed old Digital Creations copyright/license notices (withGuido van Rossum2002-04-041-53/+0
* Fix SF bug #526518Jeremy Hylton2002-03-081-1/+1
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-2/+2
* O_cwrite(): rewrote for clarity, replacing all the (Oobject *)selfGuido van Rossum2001-12-071-16/+17