summaryrefslogtreecommitdiff
path: root/Modules/cStringIO.c
Commit message (Expand)AuthorAgeFilesLines
* Added checks for integer overflows, contributed by Google. Some areMartin v. Löwis2008-02-141-2/+13
* 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
* Fix various minor issues discovered with static analysis using Visual Studio ...Kristján Valur Jónsson2007-04-211-4/+12
* C:\Code\python>type c.txtTim 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
* StringIO patch #462596: let's [c]StringIO accept read buffers onMarc-André Lemburg2001-09-241-9/+5
* I_getiter(): Function for the tp_iter slot of Itype so thatBarry Warsaw2001-09-221-20/+45
* In O_writelines: Replace use of string.joinfields with "".join.Jeremy Hylton2001-02-091-8/+11
* Added a new "base" type, IOobject for which most of theJim Fulton2000-10-061-285/+355
* Implement readlines function. Closes Bug #110686.Martin v. Löwis2000-09-191-0/+36
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-1/+2
* ANSIfy some more forward declarations.Thomas Wouters2000-07-241-1/+1
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-1/+1
* Fixed docstring typo, reported by Skip Montanaro <skip@mojam.com>.Fred Drake2000-06-191-1/+1
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-5/+5
* raise TypeError when bad argument passed to cStringIO.StringIOJeremy Hylton2000-04-121-4/+10
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-7/+7
* New version from Jim: don't call Py_FatalError() when initialization fails.Guido van Rossum1999-06-151-5/+2
* The writelines() function was never tested and contained numerous bugsGuido van Rossum1999-02-081-4/+16