From: Tim Peters <tim.peters@gmail.com>
Date: Mon, 27 Aug 2001 21:50:42 +0000 (+0000)
Subject: Fix another test still expecting overflow on big int literals.
X-Git-Tag: v2.2a3~295
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f448150c85d4447b7c7f39b43851a0edc150bdf;p=python

Fix another test still expecting overflow on big int literals.
---

diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py
index 04b14318fd..254e006540 100644
--- a/Lib/test/test_grammar.py
+++ b/Lib/test/test_grammar.py
@@ -37,10 +37,7 @@ if maxint == 2147483647:
         try:
             x = eval(s)
         except OverflowError:
-            continue
-##              raise TestFailed, \
-        print \
-                  'No OverflowError on huge integer literal ' + `s`
+            print "OverflowError on huge integer literal " + `s`
 elif eval('maxint == 9223372036854775807'):
     if eval('-9223372036854775807-1 != 01000000000000000000000'):
         raise TestFailed, 'max negative int'
@@ -51,9 +48,7 @@ elif eval('maxint == 9223372036854775807'):
         try:
             x = eval(s)
         except OverflowError:
-            continue
-        raise TestFailed, \
-                  'No OverflowError on huge integer literal ' + `s`
+            print "OverflowError on huge integer literal " + `s`
 else:
     print 'Weird maxint value', maxint