From: Brett Cannon Date: Mon, 18 Aug 2008 00:41:11 +0000 (+0000) Subject: Remove an unneeded import of abc.ABCMeta from 'inspect'. X-Git-Tag: v2.6b3~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b96f07febba594609ea4a0272fa55c4c330ee93;p=thirdparty%2FPython%2Fcpython.git Remove an unneeded import of abc.ABCMeta from 'inspect'. --- diff --git a/Lib/inspect.py b/Lib/inspect.py index 2c8614a1f147..2363826ab151 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 diff --git a/Misc/NEWS b/Misc/NEWS index d1390cd68712..665b18550701 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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.