[Zope3-checkins] CVS: zopeproducts/pypgsqlda - geometric.py:1.2

Christian 'Tiran' Heimes heimes@faho.rwth-aachen.de
Wed, 19 Mar 2003 05:13:35 -0500


Update of /cvs-repository/zopeproducts/pypgsqlda
In directory cvs.zope.org:/tmp/cvs-serv31645

Modified Files:
	geometric.py 
Log Message:
interfaces renamed. interface is now e.g. IPoint and not Point


=== zopeproducts/pypgsqlda/geometric.py 1.1 => 1.2 ===
--- zopeproducts/pypgsqlda/geometric.py:1.1	Tue Mar 18 18:02:00 2003
+++ zopeproducts/pypgsqlda/geometric.py	Wed Mar 19 05:13:34 2003
@@ -16,13 +16,13 @@
 $Id$
 """
 
-from interfaces.geometric import Point
+from interfaces.geometric import IPoint
 
 class Point(object):
     """Simple geometric point
     """
 
-    __implements__ = Point
+    __implements__ = IPoint
 
     def __init__(self, xOrTuple, y):
         # XXX