bpo-35202: Remove unused imports in Lib directory. (GH-10445)
authorSrinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com>
Sat, 10 Nov 2018 05:45:28 +0000 (11:15 +0530)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 10 Nov 2018 05:45:28 +0000 (07:45 +0200)
Lib/shutil.py
Lib/trace.py
Lib/typing.py

index 40dd070ed11f793a8d356a6373f1e9305b7b6944..b7a7df3a51fad603e8c4501c00631cd2c75a3c6f 100644 (file)
@@ -10,7 +10,6 @@ import stat
 import fnmatch
 import collections
 import errno
-import io
 
 try:
     import zlib
index 0ed7ba95b5205c9e0b8c0e4b30b5c695bc76f7be..3049e4ec683941eb9c6dc23c4dc3608dad9d569e 100755 (executable)
@@ -51,7 +51,6 @@ __all__ = ['Trace', 'CoverageResults']
 
 import linecache
 import os
-import re
 import sys
 import token
 import tokenize
index cfcbb3b7632842598859adb0836060e0f2b6435f..4f9e04506fb5cd7f7bd81f5b04d446864226167c 100644 (file)
@@ -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