diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-12-03 18:56:18 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-12-03 18:56:18 +0200 |
commit | 8175f1608eddc61c495c9163aebcc3c90549b9c4 (patch) | |
tree | e33255d5a033fe0c688ae55d2fddc86146a57708 /docs/reference | |
parent | 140acc9a322c1b575d30115604fb1d3250277c0d (diff) |
docs/glossary: Describe "stream" term.
Diffstat (limited to 'docs/reference')
-rw-r--r-- | docs/reference/glossary.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/reference/glossary.rst b/docs/reference/glossary.rst index b6153550c..d9650bdd8 100644 --- a/docs/reference/glossary.rst +++ b/docs/reference/glossary.rst @@ -120,6 +120,16 @@ Glossary from context, it's recommended to use full specification like one of the above. + stream + Also known as a "file-like object". An object which provides sequential + read-write access to the underlying data. A stream object implements + a corresponding interface, which consists of methods like ``read()``, + ``write()``, ``readinto()``, ``seek()``, ``flush()``, ``close()``, etc. + A stream is an important concept in MicroPython, many I/O objects + implement the stream interface, and thus can be used consistently and + interchangeably in different contexts. For more information on + streams in MicroPython, see `uio` module. + upip (Literally, "micro pip"). A package manage for MicroPython, inspired by :term:`CPython`'s pip, but much smaller and with reduced functionality. |