diff options
author | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com> | 2018-11-10 05:45:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-11-10 05:45:28 (GMT) |
commit | 2d1bc537fe8b15664bb3e648785ba3c12e93b232 (patch) | |
tree | 0daac886422ed15c244be95e0a04c650706c67c9 | |
parent | 9d43fa1bb228e6ebd2f1ebd0274f8f7d7e3635d4 (diff) | |
download | cpython-2d1bc537fe8b15664bb3e648785ba3c12e93b232.zip cpython-2d1bc537fe8b15664bb3e648785ba3c12e93b232.tar.gz cpython-2d1bc537fe8b15664bb3e648785ba3c12e93b232.tar.bz2 |
bpo-35202: Remove unused imports in Lib directory. (GH-10445)
-rw-r--r-- | Lib/shutil.py | 1 | ||||
-rwxr-xr-x | Lib/trace.py | 1 | ||||
-rw-r--r-- | Lib/typing.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index 40dd070..b7a7df3 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -10,7 +10,6 @@ import stat import fnmatch import collections import errno -import io try: import zlib diff --git a/Lib/trace.py b/Lib/trace.py index 0ed7ba9..3049e4e 100755 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -51,7 +51,6 @@ __all__ = ['Trace', 'CoverageResults'] import linecache import os -import re import sys import token import tokenize diff --git a/Lib/typing.py b/Lib/typing.py index cfcbb3b..4f9e045 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -18,7 +18,6 @@ At large scale, the structure of the module is following: * Wrapper submodules for re and io related types. """ -import abc from abc import abstractmethod, abstractproperty import collections import collections.abc |