We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae961ae commit 8c6885dCopy full SHA for 8c6885d
Lib/test/test_io.py
@@ -4504,6 +4504,7 @@ class CMiscIOTest(MiscIOTest):
4504
io = io
4505
name_of_module = "io", "_io"
4506
extra_exported = "BlockingIOError",
4507
+ not_exported = "OpenWrapper", # deprecated, added on demand
4508
4509
def test_readinto_buffer_overflow(self):
4510
# Issue #18025
@@ -4570,7 +4571,10 @@ class PyMiscIOTest(MiscIOTest):
4570
4571
io = pyio
4572
name_of_module = "_pyio", "io"
4573
extra_exported = "BlockingIOError", "open_code",
- not_exported = "valid_seek_flags",
4574
+ not_exported = (
4575
+ "valid_seek_flags",
4576
+ "OpenWrapper", # deprecated, added on demand
4577
+ )
4578
4579
4580
@unittest.skipIf(os.name == 'nt', 'POSIX signals required for this test.')
0 commit comments