[Zope3-checkins] CVS: Zope3/src/zope/interface - _flatten.py:1.4 type.py:1.7
Martijn Faassen
m.faassen@vet.uu.nl
Thu, 1 May 2003 15:36:14 -0400
Update of /cvs-repository/Zope3/src/zope/interface
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/interface
Modified Files:
_flatten.py type.py
Log Message:
Importgeddon part the second. Removed unused imports throughout the
source tree. This should have taken care of most unused imports
in Zope 3. :)
=== Zope3/src/zope/interface/_flatten.py 1.3 => 1.4 ===
--- Zope3/src/zope/interface/_flatten.py:1.3 Mon Feb 3 10:54:25 2003
+++ Zope3/src/zope/interface/_flatten.py Thu May 1 15:35:44 2003
@@ -19,8 +19,6 @@
"""
__metaclass__ = type # All classes are new style when run with Python 2.2+
-from zope.interface import Interface
-
def _flatten(implements, include_None=0):
"""Flatten an implements spec to a list of interfaces
=== Zope3/src/zope/interface/type.py 1.6 => 1.7 ===
--- Zope3/src/zope/interface/type.py:1.6 Fri Jan 31 11:22:01 2003
+++ Zope3/src/zope/interface/type.py Thu May 1 15:35:44 2003
@@ -19,7 +19,6 @@
"""
__metaclass__ = type # All classes are new style when run with Python 2.2+
-from zope.interface import Interface
from zope.interface.interfaces import IInterface
from zope.interface._flatten import _flatten
from zope.interface.interfaces import ITypeRegistry