mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
[3.11] gh-87846: test_io: Ignore OpenWrapper in test___all__ (#126478)
This commit is contained in:
parent
ae961ae94b
commit
8c6885d636
1 changed files with 5 additions and 1 deletions
|
@ -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.')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue