Discussion:
[Python-3000-checkins] r65794 - in python/branches/py3k: Lib/inspect.py
brett.cannon
2008-08-18 00:43:03 UTC
Permalink
Author: brett.cannon
Date: Mon Aug 18 02:43:03 2008
New Revision: 65794

Log:
Merged revisions 65793 via svnmerge from
svn+ssh://pythondev at svn.python.org/python/trunk

........
r65793 | brett.cannon | 2008-08-17 17:41:11 -0700 (Sun, 17 Aug 2008) | 2 lines

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


Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/inspect.py

Modified: python/branches/py3k/Lib/inspect.py
==============================================================================
--- python/branches/py3k/Lib/inspect.py (original)
+++ python/branches/py3k/Lib/inspect.py Mon Aug 18 02:43:03 2008
@@ -39,7 +39,6 @@
import imp
import tokenize
import linecache
-from abc import ABCMeta
from operator import attrgetter
from collections import namedtuple
# These constants are from Include/code.h.

Loading...