diff options
Diffstat (limited to 'Lib/test/test_b1.py')
-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 46a6da0..978f674 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -413,7 +413,7 @@ else: # Worked by accident in Windows release build, but failed in debug build. # Failed in all Linux builds. x = -1-sys.maxint -if x >> 1 != x/2: +if x >> 1 != x//2: raise TestFailed("x >> 1 != x/2 when x == -1-sys.maxint") print 'isinstance' |