| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
(cherry picked from commit a6296d34a478b4f697ea9db798146195075d496c)
|
| |
|
|
|
|
| |
This matches the usage by BufferedReader, BufferedWriter, etc. Also document
and test that the write() methods should only access their argument before
they return.
|
| | |
|
| |
|
|
|
| |
This allows sys.getsize() to work correctly with their subclasses with
__slots__ defined.
|
| |
|
|
| |
Patch from Shiyao Ma.
|
| |
|
|
|
| |
and io.StringIO objects now raise ValueError when the object has been closed.
Patch by Alessandro Moura.
|
| |
|
|
| |
Patch by Serhiy Storchaka.
|
| |
|
|
|
|
|
|
|
|
| |
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86587 | benjamin.peterson | 2010-11-20 11:24:04 -0600 (Sat, 20 Nov 2010) | 1 line
correct logic when pos is after the string #10467
........
|
| |
|
|
|
|
|
|
|
|
| |
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84438 | antoine.pitrou | 2010-09-02 21:48:07 +0200 (jeu., 02 sept. 2010) | 3 lines
BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS.
........
|
| |
|
|
|
| |
exceptions raised by the implicit flush(). Also ensure that calling
close() several times is supported. Patch by Pascal Chambon.
|
| |
|
|
|
|
| |
file position when calling `truncate()`. It would previously change the
file position to the given argument, which goes against the tradition of
ftruncate() and other truncation APIs. Patch by Pascal Chambon.
|
| |
|
|
| |
arbitrary keywords
|
| |
|
|
| |
io.StringIO picklable.
|
| |
|
|
| |
io.StringIO and io.BytesIO
|
| |
|