tests: Add tests to exercise lexer; and some more complex number tests.

This commit is contained in:
Damien George
2015-04-04 23:16:22 +01:00
parent 9dd3640464
commit 97abe22963
6 changed files with 122 additions and 3 deletions

View File

@@ -1,4 +1,12 @@
# literals
print(b'123')
print(br'123')
print(rb'123')
print(b'\u1234')
# construction
print(bytes())
print(bytes(b'abc'))
a = b"123"
print(a)