Add some tests for #492
This commit is contained in:
BIN
tests/compiled/test_integers_py3.3.12.pyc
Normal file
BIN
tests/compiled/test_integers_py3.3.12.pyc
Normal file
Binary file not shown.
BIN
tests/compiled/test_integers_py3.3.5.pyc
Normal file
BIN
tests/compiled/test_integers_py3.3.5.pyc
Normal file
Binary file not shown.
31
tests/input/test_integers_py3.py
Normal file
31
tests/input/test_integers_py3.py
Normal file
@@ -0,0 +1,31 @@
|
||||
"""
|
||||
test_integers.py -- source test pattern for integers
|
||||
|
||||
This source is part of the decompyle test suite.
|
||||
Snippet taken from python libs's test_class.py
|
||||
|
||||
decompyle is a Python byte-code decompiler
|
||||
See http://www.goebel-consult.de/decompyle/ for download and
|
||||
for further information
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
i = 1
|
||||
i = 42
|
||||
i = -1
|
||||
i = -42
|
||||
i = sys.maxsize
|
||||
minsize = -sys.maxsize - 1
|
||||
print(sys.maxsize)
|
||||
print(minsize)
|
||||
print(minsize - 1)
|
||||
print()
|
||||
i = -2147483647
|
||||
print(i, repr(i))
|
||||
i = i - 1
|
||||
print(i, repr(i))
|
||||
i = -0x80000000
|
||||
print(i, repr(i))
|
||||
i = -0x80000001
|
||||
print(i, repr(i))
|
20
tests/tokenized/test_integers_py3.txt
Normal file
20
tests/tokenized/test_integers_py3.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
'\ntest_integers.py -- source test pattern for integers\n\nThis source is part of the decompyle test suite.\nSnippet taken from python libs\'s test_class.py\n\ndecompyle is a Python byte-code decompiler\nSee http://www.goebel-consult.de/decompyle/ for download and\nfor further information\n' <EOL>
|
||||
import sys <EOL>
|
||||
i = 1 <EOL>
|
||||
i = 42 <EOL>
|
||||
i = - 1 <EOL>
|
||||
i = - 42 <EOL>
|
||||
i = sys . maxsize <EOL>
|
||||
minsize = - ( sys . maxsize ) - 1 <EOL>
|
||||
print ( sys . maxsize ) <EOL>
|
||||
print ( minsize ) <EOL>
|
||||
print ( minsize - 1 ) <EOL>
|
||||
print ( ) <EOL>
|
||||
i = - 2147483647 <EOL>
|
||||
print ( i , repr ( i ) ) <EOL>
|
||||
i = i - 1 <EOL>
|
||||
print ( i , repr ( i ) ) <EOL>
|
||||
i = - 2147483648 <EOL>
|
||||
print ( i , repr ( i ) ) <EOL>
|
||||
i = - 0 x80000001 <EOL>
|
||||
print ( i , repr ( i ) ) <EOL>
|
BIN
tests/xfail/test_integers_py3.3.0.pyc
Normal file
BIN
tests/xfail/test_integers_py3.3.0.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user