diff options
-rw-r--r-- | Lib/multiprocessing/managers.py | 9 | ||||
-rw-r--r-- | Lib/multiprocessing/process.py | 5 |
2 files changed, 0 insertions, 14 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index fb705cb690..f4da209fa6 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -33,15 +33,6 @@ except ImportError: from pickle import PicklingError # -# -# - -try: - bytes -except NameError: - bytes = str # XXX not needed in Py2.6 and Py3.0 - -# # Register some things for pickling # diff --git a/Lib/multiprocessing/process.py b/Lib/multiprocessing/process.py index e1189cff78..d5d3c40152 100644 --- a/Lib/multiprocessing/process.py +++ b/Lib/multiprocessing/process.py @@ -26,11 +26,6 @@ try: except OSError: ORIGINAL_DIR = None -try: - bytes -except NameError: - bytes = str # XXX not needed in Py2.6 and Py3.0 - # # Public functions # |