Python 3.14: Skip newly added stdlib file test

See #8529
This commit is contained in:
Florian Bruhin 2025-04-08 12:35:51 +02:00
parent de3fa06eff
commit 54b6c92713
1 changed files with 4 additions and 1 deletions

View File

@ -577,7 +577,7 @@ if test_file is not None:
qiodev.name = test_file.TESTFN
qiodev.mode = mode
# Create empty TESTFN file because the Python tests try to unlink
# it.after the test.
# it after the test.
with open(test_file.TESTFN, 'w', encoding='utf-8'):
pass
return qiodev
@ -598,6 +598,9 @@ if test_file is not None:
def testSetBufferSize(self):
"""Skip this test as setting buffer size is unsupported."""
def testDefaultBufferSize(self):
"""Skip this test as getting buffer size is unsupported."""
def testTruncateOnWindows(self):
"""Skip this test truncating is unsupported."""