[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/content -
sql.py:1.7.18.1
Jim Fulton
jim at zope.com
Mon Sep 8 15:22:13 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/interfaces/content
In directory cvs.zope.org:/tmp/cvs-serv20092/src/zope/app/interfaces/content
Modified Files:
Tag: parentgeddon-branch
sql.py
Log Message:
Checking in work in progress on parentgeddon-branch so Fred can help
me to get the tests passing. Specific log entries will be provided
when we merge this into the head.
=== Zope3/src/zope/app/interfaces/content/sql.py 1.7 => 1.7.18.1 ===
--- Zope3/src/zope/app/interfaces/content/sql.py:1.7 Thu Jul 3 18:46:08 2003
+++ Zope3/src/zope/app/interfaces/content/sql.py Mon Sep 8 14:21:42 2003
@@ -18,7 +18,6 @@
from zope.app.interfaces.rdb import ISQLCommand
from zope.component import getService, ComponentLookupError
-from zope.context import ContextProperty
from zope.app.i18n import ZopeMessageIDFactory as _
class MissingInput(Exception):
@@ -37,7 +36,7 @@
return connection_service.getAvailableConnections()
- allowed_values = ContextProperty(__allowed)
+ allowed_values = property(__allowed)
class ISQLScript(ISQLCommand):
"""A persistent script that can execute SQL."""
More information about the Zope3-Checkins
mailing list