diff options
author | Damien George <damien.p.george@gmail.com> | 2015-10-01 18:49:37 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-10-01 18:49:37 +0100 |
commit | a81539db25d443826e5247fefda8ae73bad64056 (patch) | |
tree | a4ff682df829cd98f1e46206d3bc3e08a560526b /tests/basics/builtin_hash.py | |
parent | 2f4e8511cd602a6110b3636c316b5cac21181bf3 (diff) |
tests: Add further tests for mpz code.
Diffstat (limited to 'tests/basics/builtin_hash.py')
-rw-r--r-- | tests/basics/builtin_hash.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/builtin_hash.py b/tests/basics/builtin_hash.py index 76fb18304..c9731a3b5 100644 --- a/tests/basics/builtin_hash.py +++ b/tests/basics/builtin_hash.py @@ -4,6 +4,7 @@ print(hash(False)) print(hash(True)) print({():1}) # hash tuple print({1 << 66:1}) # hash big int +print({-(1 << 66):2}) # hash negative big int print(hash in {hash:1}) # hash function try: |