tests/basic: Split tests into working with small ints and not working.

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.
This commit is contained in:
Paul Sokolovsky
2017-03-04 00:13:27 +03:00
parent 89e570a5b4
commit 3ab6aa3a6d
34 changed files with 166 additions and 120 deletions

View File

@@ -23,7 +23,6 @@ test_exc("bytearray() // 2", TypeError)
# object with buffer protocol needed on rhs
test_exc("bytearray(1) + 1", TypeError)
test_exc("(1 << 70) in 1", TypeError)
# unsupported subscription
test_exc("1[0]", TypeError)