Skip to content
Snippets Groups Projects
Commit 8175f160 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

docs/glossary: Describe "stream" term.

parent 140acc9a
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment