summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/struct1_intbig.py
Commit message (Collapse)AuthorAge
* py/binary.c: Fix bug when packing big-endian 'Q' values.Bas van Sisseren2017-08-15
| | | | | | | | | | | | Without bugfix: struct.pack('>Q', 16) b'\x00\x00\x00\x10\x00\x00\x00\x00' With bugfix: struct.pack('>Q', 16) b'\x00\x00\x00\x00\x00\x00\x00\x10'
* tests/basics: Convert "sys.exit()" to "raise SystemExit".Paul Sokolovsky2017-06-10
|
* tests/basic: Split tests into working with small ints and not working.Paul Sokolovsky2017-03-04
Tests which don't work with small ints are suffixed with _intbig.py. Some of these may still work with long long ints and need to be reclassified later.