commit | da4b84a07a7e085b2b155af537b03b1c80647ab0 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Thu Jun 15 18:38:19 2006 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Thu Jun 15 18:38:19 2006 +0000 |
tree | 37868c1e63fcc7eb192c4422933bb7b82379cb84 | |
parent | 97db0ca161b0317e3683112ca74a925af1242d85 [diff] [blame] |
Oops -- I introduced an off-by-6436159488 error.
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 @@ # 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):