diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-09 01:52:56 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-09 01:52:56 +0300 |
commit | 5c73de033752b090f9fc2e2f265e804eec106321 (patch) | |
tree | 40b03b61b36c630bf769d0f4526eb65d533e7a44 /docs | |
parent | 3e5534caf75b9c7e56ebcb005109e004d466b280 (diff) | |
download | micropython-5c73de033752b090f9fc2e2f265e804eec106321.tar.gz micropython-5c73de033752b090f9fc2e2f265e804eec106321.zip |
docs/uio: Mention seek()/flush() support for io.BytesIO.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/uio.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/library/uio.rst b/docs/library/uio.rst index 1823df8c4c..9b4c87df88 100644 --- a/docs/library/uio.rst +++ b/docs/library/uio.rst @@ -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() |