Add some tests for #492

This commit is contained in:
Michael Hansen
2024-06-23 11:36:20 -07:00
parent ed49554b79
commit d10c47af1e
5 changed files with 51 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View 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))

View 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>

Binary file not shown.