diff options
-rw-r--r-- | Lib/test/test_b1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index c90cadb..65285ee 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -549,7 +549,7 @@ if sys.maxint == 0x7fffffff: # thread for the details: # http://sources.redhat.com/ml/newlib/2002/msg00369.html - list(xrange(sys.maxint / 4)) + list(xrange(sys.maxint // 2)) except MemoryError: pass else: |