[Zope3-checkins] CVS: Zope3/src/zope/app/services - interface.py:1.10
Albertas Agejevas
alga@codeworks.lt
Wed, 2 Jul 2003 11:23:37 -0400
Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv26198/src/zope/app/services
Modified Files:
interface.py
Log Message:
Directly implemented interface marking through the Introspector.
SteveA has been demonstrating this during his talk at EuroPython. I reckon
he borrowed Guido's time machine...
=== Zope3/src/zope/app/services/interface.py 1.9 => 1.10 ===
--- Zope3/src/zope/app/services/interface.py:1.9 Wed Jun 25 11:27:41 2003
+++ Zope3/src/zope/app/services/interface.py Wed Jul 2 11:23:05 2003
@@ -15,6 +15,8 @@
This module contains code for interfaces in persistent modules, and
for the local interface service.
+
+$Id$
"""
from persistence import Persistent
@@ -50,7 +52,7 @@
class LocalInterfaceService(object):
- """I need a doc string."""
+ """A local interface service."""
implements(IInterfaceService,
ISimpleService)