diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-27 09:21:41 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-27 09:21:41 +0100 |
commit | a97e091d4e80bbdb05f4bb27f18b905b50daf018 (patch) | |
tree | a167161db4f7b57d23445314bd0f07bc139ac271 /tests | |
parent | f3c3010ffccc6cee0795c0491e2a686994bd0b34 (diff) | |
parent | a75b02ea9be41c27b87fd80ad37e7c26b4583fad (diff) | |
download | micropython-a97e091d4e80bbdb05f4bb27f18b905b50daf018.tar.gz micropython-a97e091d4e80bbdb05f4bb27f18b905b50daf018.zip |
Merge branch 'dhylands-int-bytes'
Diffstat (limited to 'tests')
-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 e8a0a04683..01e0b0b407 100644 --- a/tests/basics/int1.py +++ b/tests/basics/int1.py @@ -47,6 +47,7 @@ print(int('0100', 2)) print(int(' \t 0o12', 8)) print(int('0o12 \t ', 8)) print(int(b"12", 10)) +print(int(b"12")) def test(value, base): |