aboutsummaryrefslogtreecommitdiff
path: root/docs/library
diff options
context:
space:
mode:
authorThomas Ackermann <th.acker.0302@gmail.com>2023-10-13 12:27:21 +0000
committerDamien George <damien@micropython.org>2023-10-16 23:07:13 +1100
commitac4f79592b9779d827c24df2ef2ff9ad8b7f1db8 (patch)
treeca2487fe43f19e9dc9dd0e863ee786625bba0099 /docs/library
parent8eb7721b4aa838608d6e3b28b96992e3d2db42b4 (diff)
docs/library/io: Remove io.FileIO and io.TextIOWrapper.
FileIO and TextIOWrapper were removed in e65d1e69e88268145ff0e7e73240f028885915be. Remove them also from the documentation. Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/io.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/library/io.rst b/docs/library/io.rst
index 6b4b9f1a4..caa598952 100644
--- a/docs/library/io.rst
+++ b/docs/library/io.rst
@@ -86,16 +86,6 @@ Functions
Classes
-------
-.. class:: FileIO(...)
-
- This is type of a file open in binary mode, e.g. using ``open(name, "rb")``.
- You should not instantiate this class directly.
-
-.. class:: TextIOWrapper(...)
-
- This is type of a file open in text mode, e.g. using ``open(name, "rt")``.
- You should not instantiate this class directly.
-
.. class:: StringIO([string])
.. class:: BytesIO([string])