diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-13 18:32:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-13 18:32:09 (GMT) |
commit | e0c51fbaef1b16487f42b4eef6adf039c67c8eb0 (patch) | |
tree | be9b84b8d1fba72c2595c23b44750c0969d80d90 /Lib | |
parent | 875d4c099bae13a5d82bc9a2efd970473a65ec20 (diff) | |
download | cpython-e0c51fbaef1b16487f42b4eef6adf039c67c8eb0.zip cpython-e0c51fbaef1b16487f42b4eef6adf039c67c8eb0.tar.gz cpython-e0c51fbaef1b16487f42b4eef6adf039c67c8eb0.tar.bz2 |
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
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_multiprocessing.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 5966060..52b1bd2 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -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 # |