https://github.com/python/cpython/commit/8c6885d636e1c16a8ec83fad579a56d7fe79cdd7
commit: 8c6885d636e1c16a8ec83fad579a56d7fe79cdd7
branch: 3.11
author: Petr Viktorin <[email protected]>
committer: pablogsal <[email protected]>
date: 2024-11-06T13:39:30Z
summary:

[3.11] gh-87846: test_io: Ignore OpenWrapper in test___all__ (#126478)

files:
M Lib/test/test_io.py

diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index 1e444d2566e855..d528b4aa287289 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -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.')

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to