diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-18 00:43:03 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-18 00:43:03 (GMT) |
commit | 2f5cb3468e96b23024fcc32a56ef87ff2880f8f7 (patch) | |
tree | 73ad3cdb5eb44eb539ebb99f8ff968dce259e2cf | |
parent | f0a39af1ae37817bb6effc227a0db998c72d8280 (diff) | |
download | cpython-2f5cb3468e96b23024fcc32a56ef87ff2880f8f7.zip cpython-2f5cb3468e96b23024fcc32a56ef87ff2880f8f7.tar.gz cpython-2f5cb3468e96b23024fcc32a56ef87ff2880f8f7.tar.bz2 |
Merged revisions 65793 via svnmerge from
svn+ssh://pythondev@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'.
........
-rw-r--r-- | Lib/inspect.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index e89b5f0..2b0f96e 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -39,7 +39,6 @@ import dis 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. |