[Zope3-checkins]
SVN: Zope3/trunk/src/zope/publisher/interfaces/__init__.py
More cosmetic fixes.
Gintautas Miliauskas
gintas at pov.lt
Tue Feb 22 06:25:19 EST 2005
Log message for revision 29244:
More cosmetic fixes.
Changed:
U Zope3/trunk/src/zope/publisher/interfaces/__init__.py
-=-
Modified: Zope3/trunk/src/zope/publisher/interfaces/__init__.py
===================================================================
--- Zope3/trunk/src/zope/publisher/interfaces/__init__.py 2005-02-22 11:24:58 UTC (rev 29243)
+++ Zope3/trunk/src/zope/publisher/interfaces/__init__.py 2005-02-22 11:25:19 UTC (rev 29244)
@@ -125,8 +125,7 @@
'Returns the original exception object.'
class Retry(PublishingException):
- """Raise this to retry a request.
- """
+ """Raise this to retry a request."""
implements(IRetry)
@@ -141,19 +140,20 @@
class IExceptionSideEffects(Interface):
- '''An exception caught by the publisher is adapted to this so that
- it can have persistent side-effects.'''
+ """An exception caught by the publisher is adapted to this so that
+ it can have persistent side-effects."""
def __call__(obj, request, exc_info):
- '''Effect persistent side-effects.
+ """Effect persistent side-effects.
Arguments are:
obj context-wrapped object that was published
request the request
exc_info the exception info being handled
- '''
+ """
+
class IPublishTraverse(Interface):
def publishTraverse(request, name):
More information about the Zope3-Checkins
mailing list