[Zope3-checkins]
SVN: Zope3/branches/jim-adapter/src/zope/app/session/http.py
Don't need ILocalUtility any more.
Jim Fulton
jim at zope.com
Sun Apr 2 18:05:37 EDT 2006
Log message for revision 66334:
Don't need ILocalUtility any more.
Changed:
U Zope3/branches/jim-adapter/src/zope/app/session/http.py
-=-
Modified: Zope3/branches/jim-adapter/src/zope/app/session/http.py
===================================================================
--- Zope3/branches/jim-adapter/src/zope/app/session/http.py 2006-04-02 21:37:54 UTC (rev 66333)
+++ Zope3/branches/jim-adapter/src/zope/app/session/http.py 2006-04-02 22:05:36 UTC (rev 66334)
@@ -21,7 +21,6 @@
from zope.app.i18n import ZopeMessageFactory as _
from zope.app import zapi
from zope.app.session.interfaces import IClientIdManager
-from zope.app.component.interfaces import ILocalUtility
from zope import schema
from zope.interface import implements
from zope.app.http.httpdate import build_http_date
@@ -73,9 +72,7 @@
class CookieClientIdManager(Persistent):
"""Session utility implemented using cookies."""
- implements(IClientIdManager, ICookieClientIdManager,
- ILocalUtility, IAttributeAnnotatable,
- )
+ implements(IClientIdManager, ICookieClientIdManager, IAttributeAnnotatable)
__parent__ = __name__ = None
More information about the Zope3-Checkins
mailing list