diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-28 03:40:48 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-28 03:40:48 +0200 |
commit | 1801421f6d204dfae9453187e1f70e261b230a9e (patch) | |
tree | 91731a8aa10c9998b99c0f95a249b414f4e5f168 /tests | |
parent | 0b7e29c025621d940552e66d26b7470f36c579df (diff) |
bytearray: Print objects properly.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basics/bytearray1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/bytearray1.py b/tests/basics/bytearray1.py index 3658713fa..3111832f6 100644 --- a/tests/basics/bytearray1.py +++ b/tests/basics/bytearray1.py @@ -1,6 +1,7 @@ a = bytearray([1, 2, 200]) print(a[0], a[2]) print(a[-1]) +print(a) a[2] = 255 print(a[-1]) a.append(10) |