-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.