- 08 Agu, 2007 1 kayıt (commit)
-
-
Georg Brandl yazdı
Fixes #1730114.
-
- 19 Kas, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
arguments (even for -1). Fixes the last bit of #1359365.
-
- 12 Eki, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer.
-
- 15 Mar, 2006 2 kayıt (commit)
-
-
Walter Dörwald yazdı
now if close() has been called before (like file and StringIO.StringIO do)
-
Walter Dörwald yazdı
after calling close(). Change StringIO, so that it behaves the same way.
-
- 22 Eyl, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate.
-
- 01 Kas, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
Add function names to various PyArg_ParseTuple calls in bz2module.c.
-
- 21 Agu, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
truncate() left the stream position unchanged, which meant the "truncated" data didn't go away: >>> io.write('abc') >>> io.truncate(0) >>> io.write('xyz') >>> io.getvalue() 'abcxyz' Patch by Dima Dorfman.
-
- 08 Agu, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 24 Nis, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
(requested by GvR. patch contributed by Michael Stone)
-
- 23 Tem, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
-
- 13 May, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
-
- 16 Şub, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 06 Ock, 2002 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
Unicode string snippets to larger Unicode strings. This fix should also go into Python 2.2.1.
-
- 09 Ara, 2001 1 kayıt (commit)
-
-
Finn Bock yazdı
This closes patch "[ #490850 ] Jython and test_StringIO".
-
- 25 Eyl, 2001 1 kayıt (commit)
-
-
Barry Warsaw yazdı
iterator, just test to make sure it has the two required iterator protocol methods __iter__() and next() -- actually just test hasattr-ness.
-
- 24 Eyl, 2001 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
input to .write() too.
-
- 22 Eyl, 2001 1 kayıt (commit)
-
-
Barry Warsaw yazdı
Lib/test/output/test_StringIO is no longer necessary. Also, added a test of the iterator protocol that's just been added to StringIO's and cStringIO's.
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 12 Eki, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 11 Eki, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
string.letters was much more than expected. Solution: explicit is better than implicit; don't rely on string.letters.
-
- 06 Eki, 2000 1 kayıt (commit)
-
-
Jim Fulton yazdı
Added missing clode to make the clode test test a close. ;)
-
- 28 Eyl, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
cStringIO does not get it right (reported as SF bug #115531). Added test for ValueError when write() is called on a closed StringIO object. Commented out because cStringIO does not get it right (reported as SF bug #115530).
-
- 19 Eyl, 2000 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-