mirror of https://github.com/python/cpython
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:
parent
875d4c099b
commit
e0c51fbaef
|
@ -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
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue