diff options
-rw-r--r-- | Lib/inspect.py | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 2c8614a..2363826 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -38,7 +38,6 @@ import dis import imp import tokenize import linecache -from abc import ABCMeta from operator import attrgetter from collections import namedtuple @@ -48,6 +48,8 @@ Core and Builtins Library ------- +- Remove an unneeded import of abc.ABCMeta from 'inspect'. + - Remove unneeded imports of 'sys' and 'warnings' from 'io'. - Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread. |