docs/uio: Mention seek()/flush() support for io.BytesIO.

This commit is contained in:
Paul Sokolovsky 2016-08-09 01:52:56 +03:00
parent 3e5534caf7
commit 5c73de0337
1 changed files with 3 additions and 2 deletions

View File

@ -38,8 +38,9 @@ Classes
opened with "b" modifier). Initial contents of file-like objects
can be specified with `string` parameter (should be normal string
for `StringIO` or bytes object for `BytesIO`). All the usual file
methods like ``read()``, ``write()``, ``close()`` are available on
these objects, and additionally, following method:
methods like ``read()``, ``write()``, ``seek()``, ``flush()``,
``close()`` are available on these objects, and additionally, a
following method:
.. method:: getvalue()