[Zope-Checkins] CVS: Zope/lib/python/Products/ZCatalog/regressiontests - regressionCatalogTiming.py:1.4.90.1

Tres Seaver cvs-admin at zope.org
Mon Nov 17 17:10:27 EST 2003


Update of /cvs-repository/Zope/lib/python/Products/ZCatalog/regressiontests
In directory cvs.zope.org:/tmp/cvs-serv12097/lib/python/Products/ZCatalog/regressiontests

Modified Files:
      Tag: tseaver-strexp_delenda-branch
	regressionCatalogTiming.py 
Log Message:



  - Rip string exceptins out by the root.

  - webdav/*:  clean up block statements for readability.

  - XXX:  Redirects are now showing up in the error log object;  need
          to filter!


=== Zope/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py 1.4 => 1.4.90.1 ===
--- Zope/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py:1.4	Wed Aug 14 18:25:16 2002
+++ Zope/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py	Mon Nov 17 17:09:57 2003
@@ -217,7 +217,9 @@
                 f = h.getfile()
                 data = f.read()
                 print data
-                raise "Error reading from host %s" % server
+                class HTTPRequestError(Exception):
+                    pass
+                raise HTTPRequestError, "Error reading from host %s" % server
             f = h.getfile()
             out=open(mb,'w')
             print "this is going to take a while..."




More information about the Zope-Checkins mailing list