summaryrefslogtreecommitdiff
path: root/Modules/cStringIO.c
Commit message (Expand)AuthorAgeFilesLines
* Removed the old cStringIO module.Alexandre Vassalotti2008-06-021-754/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-7/+7
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-171-2/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-1/+1
* Merged revisions 56782-56847 via svnmerge fromGuido van Rossum2007-08-091-2/+5
* Revert previous checkin.Martin v. Löwis2007-07-281-7/+7
* Return bytes, not str8.Martin v. Löwis2007-07-281-7/+7
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-6/+4
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-4/+12
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-10/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-5/+13
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-13/+13
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-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