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

This commit is contained in:
Brett Cannon 2008-08-18 00:41:11 +00:00
parent 46225e77fa
commit 7b96f07feb
2 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,6 @@ import dis
import imp import imp
import tokenize import tokenize
import linecache import linecache
from abc import ABCMeta
from operator import attrgetter from operator import attrgetter
from collections import namedtuple from collections import namedtuple

View File

@ -48,6 +48,8 @@ Core and Builtins
Library Library
------- -------
- Remove an unneeded import of abc.ABCMeta from 'inspect'.
- Remove unneeded imports of 'sys' and 'warnings' from 'io'. - Remove unneeded imports of 'sys' and 'warnings' from 'io'.
- Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread. - Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread.