remove bytes alias in multiprocessing

This commit is contained in:
Benjamin Peterson 2008-06-25 03:09:05 +00:00
parent 9c437af4eb
commit aa164e1bd3
2 changed files with 0 additions and 14 deletions

View file

@ -32,15 +32,6 @@ try:
except ImportError: except ImportError:
from pickle import PicklingError from pickle import PicklingError
#
#
#
try:
bytes
except NameError:
bytes = str # XXX not needed in Py2.6 and Py3.0
# #
# Register some things for pickling # Register some things for pickling
# #

View file

@ -26,11 +26,6 @@ try:
except OSError: except OSError:
ORIGINAL_DIR = None ORIGINAL_DIR = None
try:
bytes
except NameError:
bytes = str # XXX not needed in Py2.6 and Py3.0
# #
# Public functions # Public functions
# #