2015-04-04 18:16:22 -04:00
|
|
|
# literals
|
|
|
|
print(b'123')
|
|
|
|
print(br'123')
|
|
|
|
print(rb'123')
|
|
|
|
print(b'\u1234')
|
|
|
|
|
|
|
|
# construction
|
2015-03-14 17:20:58 -04:00
|
|
|
print(bytes())
|
2015-04-04 18:16:22 -04:00
|
|
|
print(bytes(b'abc'))
|
2015-03-14 17:20:58 -04:00
|
|
|
|
2017-10-04 02:59:22 -04:00
|
|
|
# make sure empty bytes is converted correctly
|
|
|
|
print(str(bytes(), 'utf-8'))
|
|
|
|
|
2014-01-24 15:50:40 -05:00
|
|
|
a = b"123"
|
|
|
|
print(a)
|
|
|
|
print(str(a))
|
|
|
|
print(repr(a))
|
|
|
|
print(a[0], a[2])
|
|
|
|
print(a[-1])
|
2014-03-21 17:46:59 -04:00
|
|
|
print(str(a, "utf-8"))
|
|
|
|
print(str(a, "utf-8", "ignore"))
|
|
|
|
try:
|
|
|
|
str(a, "utf-8", "ignore", "toomuch")
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
2014-01-24 15:50:40 -05:00
|
|
|
|
|
|
|
s = 0
|
|
|
|
for i in a:
|
|
|
|
s += i
|
|
|
|
print(s)
|
2014-03-21 17:46:59 -04:00
|
|
|
|
|
|
|
|
|
|
|
print(bytes("abc", "utf-8"))
|
|
|
|
print(bytes("abc", "utf-8", "replace"))
|
|
|
|
try:
|
|
|
|
bytes("abc")
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
try:
|
|
|
|
bytes("abc", "utf-8", "replace", "toomuch")
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
print(bytes(3))
|
|
|
|
|
|
|
|
print(bytes([3, 2, 1]))
|
|
|
|
print(bytes(range(5)))
|
|
|
|
|
2014-08-11 15:36:38 -04:00
|
|
|
# Make sure bytes are not mistreated as unicode
|
|
|
|
x = b"\xff\x8e\xfe}\xfd\x7f"
|
|
|
|
print(len(x))
|
|
|
|
print(x[0], x[1], x[2], x[3])
|
2015-01-28 15:29:51 -05:00
|
|
|
|
|
|
|
# Make sure init values are not mistreated as unicode chars
|
|
|
|
# For sequence of known len
|
|
|
|
print(bytes([128, 255]))
|
|
|
|
# For sequence of unknown len
|
|
|
|
print(bytes(iter([128, 255])))
|
2018-02-19 00:25:30 -05:00
|
|
|
|
|
|
|
# Shouldn't be able to make bytes with negative length
|
|
|
|
try:
|
|
|
|
bytes(-1)
|
|
|
|
except ValueError:
|
|
|
|
print('ValueError')
|