diff options
| author | Damien George | 2014-08-27 09:13:15 +0100 |
|---|---|---|
| committer | Damien George | 2014-08-27 09:13:15 +0100 |
| commit | ad4c014d461cf325712d961c547f461746f52408 (patch) | |
| tree | c898437b7c2a717d74699c4ca305963a9e056879 /tests | |
| parent | f3c3010ffccc6cee0795c0491e2a686994bd0b34 (diff) | |
| parent | b7f7c655ed4b54d9ff8ec04908199d04d38b7528 (diff) | |
Merge branch 'int-bytes' of https://github.com/dhylands/micropython into 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 e8a0a0468..01e0b0b40 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): |
