- 11 Haz, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 30 Ara, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
version 4.1.1 and works with up to BerkeleyDB 4.1.25.
-
- 19 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 17 Eyl, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
being used to dump output (no seeks), so we can avoid a lot of extra checks being made.
-
- 03 Haz, 2002 1 kayıt (commit)
-
-
Walter Dörwald yazdı
x in string.whitespace => x.isspace() type(x) in types.StringTypes => isinstance(x, basestring) isinstance(x, types.StringTypes) => isinstance(x, basestring) type(x) is types.StringType => isinstance(x, str) type(x) == types.StringType => isinstance(x, str) string.split(x, ...) => x.split(...) string.join(x, y) => y.join(x) string.zfill(x, ...) => x.zfill(...) string.count(x, ...) => x.count(...) hasattr(types, "UnicodeType") => try: unicode except NameError: type(x) != types.TupleTuple => not isinstance(x, tuple) isinstance(x, types.TupleType) => isinstance(x, tuple) type(x) is types.IntType => isinstance(x, int) Do not mention the string module in the rlcompleter docstring. This partially applies SF patch http://www.python.org/sf/562373 (with basestring instead of string). (It excludes the changes to unittest.py and does not change the os.stat stuff.)
-
- 23 May, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 15 May, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Closes patch 556161.
-
- 13 May, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
-
- 10 May, 2002 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 11 Şub, 2002 1 kayıt (commit)
-
-
Neal Norwitz 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.
-
- 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ı
iterator protocol.
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
-
- 20 Ock, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
added test script and expected output file as well this closes patch 103297. __all__ attributes will be added to other modules without first submitting a patch, just adding the necessary line to the test script to verify more-or-less correct implementation.
-
- 13 Ara, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 12 Ara, 2000 2 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
can't be imported. This makes StringIO.py work with Jython. Also, get rid of the string module by converting to string methods. Shorten some lines by using augmented assignment where appropriate.
-
- 12 Eki, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
http://sourceforge.net/bugs/?func=detailbug&bug_id=116636&group_id=5470 bobalex@rsv.ricoh.com Bug report: If the file position is less than the end of the "file", and a write is performed extending past then end of the file, the data string is corrupted. Solution: in write(), when writing past the end, properly set self.len when newpos is > self.len.
-
- 28 Eyl, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
This closes SourceForge bug #115527.
-
- 19 Eyl, 2000 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 28 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
docstrings into comments.
-
- 02 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
1. Comments at the beginning of the module, before functions, and before classes have been turned into docstrings. 2. Tabs are normalized to four spaces. Also, removed the "remove" function from dircmp.py, which reimplements list.remove() (it must have been very old).
-
- 18 Agu, 1998 1 kayıt (commit)
-
-
Fred Drake yazdı
objects; this makes the emulation of file objects a bit better, and the exceptions explain things a bit better.
-
- 25 Tem, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Haz, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 25 Ock, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Tem, 1995 1 kayıt (commit)
-
-
Sjoerd Mullender yazdı
-
- 22 Haz, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 Haz, 1994 1 kayıt (commit)
-
-
Guido van Rossum yazdı
StringIO implements pseudo files writing into and reading from strings.
-