diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 18:56:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 18:56:10 (GMT) |
commit | f63d55800770547d4dfff86797de8572fe609f4e (patch) | |
tree | 4dedfb3d3435524551a02f0cb6de873c0da7af3d /Lib | |
parent | 860aee75b83f8d026999682b7565e271c05433a4 (diff) | |
parent | a5ec63b5ebb1678558e4411d1dda8f994145fde8 (diff) | |
download | cpython-f63d55800770547d4dfff86797de8572fe609f4e.zip cpython-f63d55800770547d4dfff86797de8572fe609f4e.tar.gz cpython-f63d55800770547d4dfff86797de8572fe609f4e.tar.bz2 |
merge heads
Diffstat (limited to 'Lib')
-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 272a887..fc5b65b 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__) |