diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 18:49:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 18:49:17 (GMT) |
commit | a5ec63b5ebb1678558e4411d1dda8f994145fde8 (patch) | |
tree | 9a44216fa445967be712c7c1f9404dd05ae0770b /Lib/venv | |
parent | 5176337bf597fd13491ae079756cc94aa10c9d3c (diff) | |
download | cpython-a5ec63b5ebb1678558e4411d1dda8f994145fde8.zip cpython-a5ec63b5ebb1678558e4411d1dda8f994145fde8.tar.gz cpython-a5ec63b5ebb1678558e4411d1dda8f994145fde8.tar.bz2 |
remove unused imports
Diffstat (limited to 'Lib/venv')
-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__) |