summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-18 15:22:10 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-18 15:22:10 (GMT)
commiteb2a5ef36a790ccd3d6943cd75c81fc289fc55c6 (patch)
tree8573507c148b518ce35b1ada29192f60d1913b8e /Lib/test/test_sys.py
parent4edaa0d516dc6b5e3d739e45d55226bef8516512 (diff)
downloadcpython-eb2a5ef36a790ccd3d6943cd75c81fc289fc55c6.zip
cpython-eb2a5ef36a790ccd3d6943cd75c81fc289fc55c6.tar.gz
cpython-eb2a5ef36a790ccd3d6943cd75c81fc289fc55c6.tar.bz2
Fix SF bug #688424, 64-bit test problems
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index f06e934..606b8ce 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -173,7 +173,7 @@ class SysModuleTest(unittest.TestCase):
def test_getframe(self):
self.assertRaises(TypeError, sys._getframe, 42, 42)
- self.assertRaises(ValueError, sys._getframe, sys.maxint)
+ self.assertRaises(ValueError, sys._getframe, 2000000000)
self.assert_(
SysModuleTest.test_getframe.im_func.func_code \
is sys._getframe().f_code