[Zope3-checkins] CVS: zopeproducts/psycopgda - adapter.py:1.4

Viktorija Zaksiene ryzaja@codeworks.lt
Mon, 2 Jun 2003 04:22:50 -0400


Update of /cvs-repository/zopeproducts/psycopgda
In directory cvs.zope.org:/tmp/cvs-serv29628/src/zopeproducts/psycopgda

Modified Files:
	adapter.py 
Log Message:
Deleted unneeded implements(): it follows the base classes by default.


=== zopeproducts/psycopgda/adapter.py 1.3 => 1.4 ===
--- zopeproducts/psycopgda/adapter.py:1.3	Mon Jun  2 03:35:58 2003
+++ zopeproducts/psycopgda/adapter.py	Mon Jun  2 04:22:49 2003
@@ -17,7 +17,6 @@
 """
 
 from zope.app.rdb import ZopeDatabaseAdapter, parseDSN
-from zope.interface import implements, implementedBy
 
 from datetime import date, time, datetime, timedelta
 import psycopg
@@ -287,7 +286,6 @@
     it might be something like '1 month', which is a variable number of days.
     """
 
-    implements(implementedBy(ZopeDatabaseAdapter))
 
     def _connection_factory(self):
         """Create a Psycopg DBI connection based on the DSN"""