mirror of
https://github.com/python/cpython.git
synced 2025-12-11 11:31:05 +00:00
Oops -- I introduced an off-by-6436159488 error.
This commit is contained in:
parent
97db0ca161
commit
da4b84a07a
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ class TestsWithSourceFile(unittest.TestCase):
|
||||||
|
|
||||||
# It will contain enough copies of self.data to reach about 6GB of
|
# It will contain enough copies of self.data to reach about 6GB of
|
||||||
# raw data to store.
|
# 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
|
next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
|
||||||
for num in range(filecount):
|
for num in range(filecount):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue