[Zope-Checkins] CVS: Zope/lib/python/ZServer/PubCore - ZServerPublisher.py:1.10

Chris McDonough chrism at zope.com
Wed Oct 1 00:19:25 EDT 2003


Update of /cvs-repository/Zope/lib/python/ZServer/PubCore
In directory cvs.zope.org:/tmp/cvs-serv20184/PubCore

Modified Files:
	ZServerPublisher.py 
Log Message:
Test checkin for chrism-zserver-connection-policy-branch.


=== Zope/lib/python/ZServer/PubCore/ZServerPublisher.py 1.9 => 1.10 ===
--- Zope/lib/python/ZServer/PubCore/ZServerPublisher.py:1.9	Tue Mar 18 16:15:16 2003
+++ Zope/lib/python/ZServer/PubCore/ZServerPublisher.py	Wed Oct  1 00:19:24 2003
@@ -13,14 +13,12 @@
 from ZPublisher import publish_module
 
 class ZServerPublisher:
+    """ A class which publishes a module over and over """
     def __init__(self, accept):
         while 1:
             try:
-                name, request, response=accept()
-                publish_module(
-                    name,
-                    request=request,
-                    response=response)
+                name, request, response = accept()
+                publish_module(name, request=request, response=response)
             finally:
                 response._finish()
-                request=response=None
+                request = response = None




More information about the Zope-Checkins mailing list