Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py/binary.c: Fix bug when packing big-endian 'Q' values. | Bas van Sisseren | 2017-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 Sokolovsky | 2017-06-10 |
| | |||
* | tests/basic: Split tests into working with small ints and not working. | Paul Sokolovsky | 2017-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. |