[Python-checkins] r65793 - in python/trunk: Lib/inspect.py Misc/NEWS

brett.cannon python-checkins at python.org
Mon Aug 18 02:41:11 CEST 2008


Author: brett.cannon
Date: Mon Aug 18 02:41:11 2008
New Revision: 65793

Log:
Remove an unneeded import of abc.ABCMeta from 'inspect'.


Modified:
   python/trunk/Lib/inspect.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/inspect.py
==============================================================================
--- python/trunk/Lib/inspect.py	(original)
+++ python/trunk/Lib/inspect.py	Mon Aug 18 02:41:11 2008
@@ -38,7 +38,6 @@
 import imp
 import tokenize
 import linecache
-from abc import ABCMeta
 from operator import attrgetter
 from collections import namedtuple
 

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Mon Aug 18 02:41:11 2008
@@ -48,6 +48,8 @@
 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.


More information about the Python-checkins mailing list