diff options
author | Guido van Rossum <guido@python.org> | 2002-08-29 15:10:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-29 15:10:30 (GMT) |
commit | fc26c0730c5c337f78150bef255b5f661900f01c (patch) | |
tree | a6d2076267b697d7cc3b11201ec59609d58d67ef /Lib/test/tokenize_tests.py | |
parent | a29eafa614057a83d52baee6c08825f5a4cdc43c (diff) | |
download | cpython-fc26c0730c5c337f78150bef255b5f661900f01c.zip cpython-fc26c0730c5c337f78150bef255b5f661900f01c.tar.gz cpython-fc26c0730c5c337f78150bef255b5f661900f01c.tar.bz2 |
Undo Barry's change. This file is not imported, it's fed as input to
the tokenize module by test_tokenize.py. The FutureWarnings only
appeared during installation, and I've figured out a way to suppress
those in a different way.
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 2e55fb3..e990a36 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 != 020000000000L -037777777777L != -1 -0xffffffffL != -1 +-2147483647-1 != 020000000000 +037777777777 != -1 +0xffffffff != -1 # Long integers x = 0L |