remove bytes alias

This commit is contained in:
Benjamin Peterson 2008-07-13 18:25:13 +00:00
parent b028f50911
commit 2a6087966c

View file

@ -38,13 +38,6 @@ if sys.version_info >= (3, 0):
else: else:
latin = str latin = str
try:
bytes
except NameError:
bytes = str
def bytearray(seq):
return array.array('c', seq)
# #
# Constants # Constants
# #