diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-06-15 18:38:19 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-06-15 18:38:19 (GMT) |
commit | da4b84a07a7e085b2b155af537b03b1c80647ab0 (patch) | |
tree | 37868c1e63fcc7eb192c4422933bb7b82379cb84 | |
parent | 97db0ca161b0317e3683112ca74a925af1242d85 (diff) | |
download | cpython-da4b84a07a7e085b2b155af537b03b1c80647ab0.zip cpython-da4b84a07a7e085b2b155af537b03b1c80647ab0.tar.gz cpython-da4b84a07a7e085b2b155af537b03b1c80647ab0.tar.bz2 |
Oops -- I introduced an off-by-6436159488 error.
-rw-r--r-- | Lib/test/test_zipfile64.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_zipfile64.py b/Lib/test/test_zipfile64.py index b842cf2..de61ced 100644 --- a/Lib/test/test_zipfile64.py +++ b/Lib/test/test_zipfile64.py @@ -46,7 +46,7 @@ class TestsWithSourceFile(unittest.TestCase): # It will contain enough copies of self.data to reach about 6GB of # raw data to store. - filecount = 6*1024**2 // len(self.data) + filecount = 6*1024**3 // len(self.data) next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL for num in range(filecount): |