diff options
-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__) |