Merged revisions 64920 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64920 | benjamin.peterson | 2008-07-13 13:25:13 -0500 (Sun, 13 Jul 2008) | 1 line

  remove bytes alias
........
This commit is contained in:
Benjamin Peterson 2008-07-13 18:32:09 +00:00
parent 875d4c099b
commit e0c51fbaef
1 changed files with 0 additions and 7 deletions

View File

@ -36,13 +36,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
#