From ac4f79592b9779d827c24df2ef2ff9ad8b7f1db8 Mon Sep 17 00:00:00 2001 From: Thomas Ackermann Date: Fri, 13 Oct 2023 12:27:21 +0000 Subject: [PATCH] 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 --- docs/library/io.rst | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/library/io.rst b/docs/library/io.rst index 6b4b9f1a47..caa5989522 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])