diff options
author | Damien George <damien.p.george@gmail.com> | 2015-03-14 21:20:58 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-03-14 21:20:58 +0000 |
commit | 26a9975fba2bbd8875f2671495003b9bdcb8d8b2 (patch) | |
tree | 6ea4e71ed0dde88d41ab29742c740faf6ee615e6 /tests/basics/bytes.py | |
parent | 0683c1ceefe328399d967b85f172544eef04a832 (diff) |
tests: Add some more tests for bytes, bignum, string and ujson.
Diffstat (limited to 'tests/basics/bytes.py')
-rw-r--r-- | tests/basics/bytes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/basics/bytes.py b/tests/basics/bytes.py index ca0594a25..2dafad49b 100644 --- a/tests/basics/bytes.py +++ b/tests/basics/bytes.py @@ -1,3 +1,5 @@ +print(bytes()) + a = b"123" print(a) print(str(a)) |