[Zodb-checkins] CVS: Zope3/src/zope/interface - __init__.py:1.6

Jim Fulton jim at zope.com
Mon Jun 2 08:07:19 EDT 2003


Update of /cvs-repository/Zope3/src/zope/interface
In directory cvs.zope.org:/tmp/cvs-serv20325/src/zope/interface

Modified Files:
	__init__.py 
Log Message:
Added a module interface declaration and an __all__ definition.


=== Zope3/src/zope/interface/__init__.py 1.5 => 1.6 ===
--- Zope3/src/zope/interface/__init__.py:1.5	Sat May  3 12:34:46 2003
+++ Zope3/src/zope/interface/__init__.py	Mon Jun  2 07:07:19 2003
@@ -89,3 +89,7 @@
 from zope.interface.declarations import implements, implementsOnly
 from zope.interface.declarations import classProvides, moduleProvides
 from zope.interface.declarations import InterfaceSpecification
+
+from zope.interface.interfaces import IInterfaceDeclaration
+moduleProvides(IInterfaceDeclaration)
+__all__ = ('Interface', 'Attribute') + tuple(IInterfaceDeclaration)




More information about the Zodb-checkins mailing list