Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
42901554
Commit
42901554
authored
Mar 22, 2014
by
Paul Sokolovsky
Browse files
objint_longlong: Add regression test for improper inplace op implementation.
parent
c070ff24
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/basics/int-long.py
View file @
42901554
...
...
@@ -37,3 +37,10 @@ a <<= 5
print
(
a
)
a
>>=
1
print
(
a
)
# Test referential integrity of long ints
a
=
0x1ffffffff
b
=
a
a
+=
1
print
(
a
)
print
(
b
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment