diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-22 16:52:03 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-22 16:52:03 +0100 |
commit | 1f9e2188a630d4258e964df01a20dbb05d88b5a5 (patch) | |
tree | a589ef3bc2adf9903ffbd5f663bfa00ad6cefd8f /tests/basics/int1.py | |
parent | 956d76578634a86ea50246de45add748b96cb4ec (diff) |
tests: Add tests for attrtuple, and for more corner cases.
Diffstat (limited to 'tests/basics/int1.py')
-rw-r--r-- | tests/basics/int1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/int1.py b/tests/basics/int1.py index f4e4c3f09..a010a32e0 100644 --- a/tests/basics/int1.py +++ b/tests/basics/int1.py @@ -78,6 +78,7 @@ test('0b2', 2) test('0o8', 8) test('0xg', 16) test('1 1', 16) +test('123', 37) # check that we don't parse this as a floating point number print(0x1e+1) |