]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove an unneeded import of abc.ABCMeta from 'inspect'.
authorBrett Cannon <bcannon@gmail.com>
Mon, 18 Aug 2008 00:41:11 +0000 (00:41 +0000)
committerBrett Cannon <bcannon@gmail.com>
Mon, 18 Aug 2008 00:41:11 +0000 (00:41 +0000)
Lib/inspect.py
Misc/NEWS

index 2c8614a1f147f1a0f36af386a8cf422b494dc40c..2363826ab151cb3ebc476498e880e2ab46093ffe 100644 (file)
@@ -38,7 +38,6 @@ import dis
 import imp
 import tokenize
 import linecache
-from abc import ABCMeta
 from operator import attrgetter
 from collections import namedtuple
 
index d1390cd68712179dc270e8c7f4d27f5027bc0d0d..665b185507010415155d8484874df4bc122b514d 100644 (file)
--- 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.