[Zope-CVS] CVS: Products/FSDump/interfaces - MetatypeDumper.py:1.2 __init__.py:1.2

Tres Seaver tseaver at zope.com
Fri Apr 29 10:19:31 EDT 2005


Update of /cvs-repository/Products/FSDump/interfaces
In directory cvs.zope.org:/tmp/cvs-serv22760/interfaces

Modified Files:
	MetatypeDumper.py __init__.py 
Log Message:
 - Packaging changes (prep for 0.9).


=== Products/FSDump/interfaces/MetatypeDumper.py 1.1 => 1.2 ===
--- Products/FSDump/interfaces/MetatypeDumper.py:1.1	Mon Jun 18 14:53:55 2001
+++ Products/FSDump/interfaces/MetatypeDumper.py	Fri Apr 29 10:19:31 2005
@@ -1,6 +1,14 @@
-from Interfaces import Base
+""" FSDump plugin interface:  MetatypeDumper
 
-class MetatypeDumper( Base ):
+$Id$
+"""
+
+try:
+    from zope.interface import Interface
+except ImportError: # Zope < 2.8.0a2
+    from Interfaces import Interface
+
+class MetatypeDumper( Interface ):
     """
         Interface for instance / method / function which allows
         dumping objects of a given metatype to the filesystem.


=== Products/FSDump/interfaces/__init__.py 1.1 => 1.2 ===
--- Products/FSDump/interfaces/__init__.py:1.1	Mon Jun 18 14:53:55 2001
+++ Products/FSDump/interfaces/__init__.py	Fri Apr 29 10:19:31 2005
@@ -0,0 +1,4 @@
+""" FSDump product interfaces.
+
+$Id$
+"""



More information about the Zope-CVS mailing list