]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-87846: test_io: Ignore OpenWrapper in test___all__ (#126478)
authorPetr Viktorin <encukou@gmail.com>
Wed, 6 Nov 2024 13:39:30 +0000 (14:39 +0100)
committerGitHub <noreply@github.com>
Wed, 6 Nov 2024 13:39:30 +0000 (13:39 +0000)
Lib/test/test_io.py

index 1e444d2566e8554148121af91bad3e87cd628206..d528b4aa287289b19d8969025b3d75dc9b1023dd 100644 (file)
@@ -4504,6 +4504,7 @@ class CMiscIOTest(MiscIOTest):
     io = io
     name_of_module = "io", "_io"
     extra_exported = "BlockingIOError",
+    not_exported = "OpenWrapper",  # deprecated, added on demand
 
     def test_readinto_buffer_overflow(self):
         # Issue #18025
@@ -4570,7 +4571,10 @@ class PyMiscIOTest(MiscIOTest):
     io = pyio
     name_of_module = "_pyio", "io"
     extra_exported = "BlockingIOError", "open_code",
-    not_exported = "valid_seek_flags",
+    not_exported = (
+        "valid_seek_flags",
+        "OpenWrapper",   # deprecated, added on demand
+    )
 
 
 @unittest.skipIf(os.name == 'nt', 'POSIX signals required for this test.')