2014-12-04 10:46:14 -05:00
|
|
|
# test construction of bytes from different objects
|
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
# tuple, list
|
2014-12-04 10:46:14 -05:00
|
|
|
print(bytes((1, 2)))
|
|
|
|
print(bytes([1, 2]))
|
|
|
|
|
2015-09-03 18:06:18 -04:00
|
|
|
# constructor value out of range
|
|
|
|
try:
|
|
|
|
bytes([-1])
|
|
|
|
except ValueError:
|
|
|
|
print('ValueError')
|
|
|
|
|
|
|
|
# constructor value out of range
|
|
|
|
try:
|
|
|
|
bytes([256])
|
|
|
|
except ValueError:
|
|
|
|
print('ValueError')
|
|
|
|
|
2015-08-21 06:56:14 -04:00
|
|
|
# error in construction
|
|
|
|
try:
|
|
|
|
a = bytes([1, 2, 3], 1)
|
|
|
|
except TypeError:
|
|
|
|
print('TypeError')
|