[Zope3-checkins] CVS: Zope3/lib/python/Zope/Server/HTTP/tests - testPublisherServer.py:1.4.14.1

Rakesh Naidu rnaidu@zeomega.com
Fri, 18 Oct 2002 09:01:03 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Server/HTTP/tests
In directory cvs.zope.org:/tmp/cvs-serv24863/ErrorReportingService-branch/lib/python/Zope/Server/HTTP/tests

Modified Files:
      Tag: ErrorReportingService-branch
	testPublisherServer.py 
Log Message:
New parameter(object) has been added to handleException Method 


=== Zope3/lib/python/Zope/Server/HTTP/tests/testPublisherServer.py 1.4 => 1.4.14.1 ===
--- Zope3/lib/python/Zope/Server/HTTP/tests/testPublisherServer.py:1.4	Tue Jun 18 10:47:08 2002
+++ Zope3/lib/python/Zope/Server/HTTP/tests/testPublisherServer.py	Fri Oct 18 09:01:02 2002
@@ -53,12 +53,12 @@
 
 class PublicationWithConflict(DefaultPublication):
 
-    def handleException(self, request, exc_info, retry_allowed=1):
+    def handleException(self, object, request, exc_info, retry_allowed=1):
         if exc_info[0] is Conflict and retry_allowed:
             # This simulates a ZODB retry.
             raise Retry(exc_info)
         else:
-            DefaultPublication.handleException(self, request, exc_info,
+            DefaultPublication.handleException(self, object, request, exc_info,
                                                retry_allowed)