Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a0a7b4 commit 49fda0cCopy full SHA for 49fda0c
1 file changed
Lib/test/test_tempfile.py
@@ -1109,6 +1109,9 @@ def test_del_unrolled_file(self):
1109
with self.assertWarns(ResourceWarning):
1110
f.__del__()
1111
1112
+ @unittest.skipIf(
1113
+ support.is_emscripten, "Emscripten cannot fstat renamed files."
1114
+ )
1115
def test_del_rolled_file(self):
1116
# The rolled file should be deleted when the SpooledTemporaryFile
1117
# object is deleted. This should raise a ResourceWarning since the file
0 commit comments