[Zope3-checkins] CVS: Zope3/src/zope/app/services - queryfield.py:1.3
Steve Alexander
steve@cat-box.net
Sat, 7 Jun 2003 02:54:54 -0400
Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv6903/src/zope/app/services
Modified Files:
queryfield.py
Log Message:
Removed use of old "from zope.interface.implements ..." api.
=== Zope3/src/zope/app/services/queryfield.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/services/queryfield.py:1.2 Tue Feb 11 10:59:56 2003
+++ Zope3/src/zope/app/services/queryfield.py Sat Jun 7 02:54:23 2003
@@ -19,7 +19,7 @@
from zope.schema import Tuple
from zope.schema.interfaces import ValidationError
from zope.component import getAdapter
-from zope.interface.implements import implements
+from zope.interface import classImplements
# See end of file for further imports
class QueryProcessorsField(Tuple):
@@ -48,5 +48,5 @@
from zope.app.interfaces.services.query import IQueryProcessorsField
from zope.app.interfaces.services.query import IQueryProcessable
from zope.app.interfaces.services.query import IQueryProcessor
-implements(QueryProcessorsField, IQueryProcessorsField)
+classImplements(QueryProcessorsField, IQueryProcessorsField)