diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-02-14 13:14:46 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-02-14 13:14:46 +0300 |
commit | ee3615d80022d1b5e5c0fdca466f20e50f07e63c (patch) | |
tree | 4e3b9e5263a95f04706eed3056e95a5bea28d892 | |
parent | dd00d0134bf4a15fe4f72dc8a157587052717c59 (diff) | |
download | micropython-ee3615d80022d1b5e5c0fdca466f20e50f07e63c.tar.gz micropython-ee3615d80022d1b5e5c0fdca466f20e50f07e63c.zip |
docs/uos: Remove mention of uos.sep.
MicroPython guarantees '/' to be a path separator, so extra constant taking
precious ROM space are not needed. MicroPython never had such constant, only
one vendor port had it (now unmaintained).
-rw-r--r-- | docs/library/uos.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/library/uos.rst b/docs/library/uos.rst index 242e8c3d0b..cd0c5cae8c 100644 --- a/docs/library/uos.rst +++ b/docs/library/uos.rst @@ -116,10 +116,3 @@ Functions Duplicate the terminal (the REPL) on the passed stream-like object. The given object must at least implement the ``.read()`` and ``.write()`` methods. - -Constants ---------- - -.. data:: sep - - separation character used in paths |