index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
cStringIO.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merged revisions 56782-56847 via svnmerge from
Guido van Rossum
2007-08-09
1
-2/+5
*
Revert previous checkin.
Martin v. Löwis
2007-07-28
1
-7/+7
*
Return bytes, not str8.
Martin v. Löwis
2007-07-28
1
-7/+7
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-6/+4
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-4/+12
*
Kill off softspace completely (except in formatter.py which seems to have
Guido van Rossum
2007-02-09
1
-10/+1
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-5/+13
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-13/+13
*
Merge part of the trunk changes into the p3yk branch. This merges from 43030
Thomas Wouters
2006-04-21
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
*
Fixed docstring typo, reported by Skip Montanaro <skip@mojam.com>.
Fred Drake
2000-06-19
1
-1/+1
*
Vladimir Marangozov's long-awaited malloc restructuring.
Guido van Rossum
2000-05-03
1
-5/+5
*
raise TypeError when bad argument passed to cStringIO.StringIO
Jeremy Hylton
2000-04-12
1
-4/+10
*
Massive patch by Skip Montanaro to add ":name" to as many
Guido van Rossum
2000-02-29
1
-7/+7
*
New version from Jim: don't call Py_FatalError() when initialization fails.
Guido van Rossum
1999-06-15
1
-5/+2
[next]