[Zope-CVS] CVS: Products/AdaptableStorage/gateway_sql - PsycopgConnection.py:1.5
Shane Hathaway
shane@zope.com
Tue, 31 Dec 2002 16:09:35 -0500
Update of /cvs-repository/Products/AdaptableStorage/gateway_sql
In directory cvs.zope.org:/tmp/cvs-serv13064/gateway_sql
Modified Files:
PsycopgConnection.py
Log Message:
- Added ITPCConnection. It doesn't really belong in the serial
package, but there's no other good place for it right now.
- FSConnection now allows a hidden filename prefix other than
".", such as "_", taking advantage of the fact that the Zope 2 security
model disallows leading underscores.
- Added some more docs.
=== Products/AdaptableStorage/gateway_sql/PsycopgConnection.py 1.4 => 1.5 ===
--- Products/AdaptableStorage/gateway_sql/PsycopgConnection.py:1.4 Mon Dec 23 23:29:32 2002
+++ Products/AdaptableStorage/gateway_sql/PsycopgConnection.py Tue Dec 31 16:09:05 2002
@@ -18,8 +18,12 @@
import psycopg
+from serial_public import ITPCConnection
+
class PsycopgConnection:
+
+ __implements__ = ITPCConnection
_final = 0
db = None