diff options
author | Barry Warsaw <barry@python.org> | 2002-08-28 16:36:11 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-08-28 16:36:11 (GMT) |
commit | 266e6b1f4be03ce2c95f328e0856f5cbac3b6347 (patch) | |
tree | 2d2bc219aeb9e6adfe032087762da8fd09176fa4 /Lib/test/tokenize_tests.py | |
parent | ee113f08f81640e651352a222d01895c5fd8535c (diff) | |
download | cpython-266e6b1f4be03ce2c95f328e0856f5cbac3b6347.zip cpython-266e6b1f4be03ce2c95f328e0856f5cbac3b6347.tar.gz cpython-266e6b1f4be03ce2c95f328e0856f5cbac3b6347.tar.bz2 |
Quite down some FutureWarnings.
Diffstat (limited to 'Lib/test/tokenize_tests.py')
-rw-r--r-- | Lib/test/tokenize_tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/tokenize_tests.py b/Lib/test/tokenize_tests.py index e990a36..2e55fb3 100644 --- a/Lib/test/tokenize_tests.py +++ b/Lib/test/tokenize_tests.py @@ -39,9 +39,9 @@ x = 0 0xff <> 255 0377 <> 255 2147483647 != 017777777777 --2147483647-1 != 020000000000 -037777777777 != -1 -0xffffffff != -1 +-2147483647-1 != 020000000000L +037777777777L != -1 +0xffffffffL != -1 # Long integers x = 0L |