Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update test_zipfile64.py from 3.13.11
  • Loading branch information
ShaharNaveh committed Dec 13, 2025
commit 00694d1e084af6a3683315efd596c685c8df67a0
13 changes: 5 additions & 8 deletions Lib/test/test_zipfile64.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'test requires loads of disk-space bytes and a long time to run'
)

import zipfile, os, unittest
import zipfile, unittest
import time
import sys

Expand All @@ -32,10 +32,6 @@ def setUp(self):
line_gen = ("Test of zipfile line %d." % i for i in range(1000000))
self.data = '\n'.join(line_gen).encode('ascii')

# And write it to a file.
with open(TESTFN, "wb") as fp:
fp.write(self.data)

def zipTest(self, f, compression):
# Create the ZIP archive.
with zipfile.ZipFile(f, "w", compression) as zipfp:
Expand Down Expand Up @@ -67,6 +63,9 @@ def zipTest(self, f, compression):
(num, filecount)), file=sys.__stdout__)
sys.__stdout__.flush()

# Check that testzip thinks the archive is valid
self.assertIsNone(zipfp.testzip())

def testStored(self):
# Try the temp file first. If we do TESTFN2 first, then it hogs
# gigabytes of disk space for the duration of the test.
Expand All @@ -85,9 +84,7 @@ def testDeflated(self):
self.zipTest(TESTFN2, zipfile.ZIP_DEFLATED)

def tearDown(self):
for fname in TESTFN, TESTFN2:
if os.path.exists(fname):
os.remove(fname)
os_helper.unlink(TESTFN2)


class OtherTests(unittest.TestCase):
Expand Down
Loading