Files
RustPython/tests/snippets/literals.py
2019-04-24 04:00:52 +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