remove bytes alias

This commit is contained in:
Benjamin Peterson 2008-07-13 18:25:13 +00:00
parent b028f50911
commit 2a6087966c
1 changed files with 0 additions and 7 deletions

View File

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