diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 18:49:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 18:49:26 (GMT) |
commit | b321fe1f274a3186e86c3982da76cf71f2050f0c (patch) | |
tree | ee82dc492939484fc02e52af6daedd91b4c0905f | |
parent | cf892ace48721cb301d6f8d56ad8779bc13cb9de (diff) | |
parent | a5ec63b5ebb1678558e4411d1dda8f994145fde8 (diff) | |
download | cpython-b321fe1f274a3186e86c3982da76cf71f2050f0c.zip cpython-b321fe1f274a3186e86c3982da76cf71f2050f0c.tar.gz cpython-b321fe1f274a3186e86c3982da76cf71f2050f0c.tar.bz2 |
merge 3.3
-rw-r--r-- | Lib/venv/__init__.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index 8d807d7..1688bc4 100644 --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -25,18 +25,11 @@ optional arguments: --upgrade Upgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place. """ -import base64 -import io import logging import os -import os.path import shutil import sys import sysconfig -try: - import threading -except ImportError: - threading = None import types logger = logging.getLogger(__name__) |