Files
RustPython/extra_tests/snippets/literals.py
2020-09-13 06:58:57 +09:00

9 lines
199 B
Python

# Integer literals
assert 0b101010 == 42
assert 0B101010 == 42
assert 0o777 == 511
assert 0O777 == 511
assert 0xcafebabe == 3405691582
assert 0Xcafebabe == 3405691582
assert 0xCAFEBABE == 3405691582