[Zope-Checkins] CVS: Zope/lib/python/ZServer/PubCore -
ZServerPublisher.py:1.11
Chris McDonough
chrism at zope.com
Wed Oct 1 00:24:26 EDT 2003
Update of /cvs-repository/Zope/lib/python/ZServer/PubCore
In directory cvs.zope.org:/tmp/cvs-serv21011
Modified Files:
ZServerPublisher.py
Log Message:
Revert test checkin to HEAD.
=== Zope/lib/python/ZServer/PubCore/ZServerPublisher.py 1.10 => 1.11 ===
--- Zope/lib/python/ZServer/PubCore/ZServerPublisher.py:1.10 Wed Oct 1 00:19:24 2003
+++ Zope/lib/python/ZServer/PubCore/ZServerPublisher.py Wed Oct 1 00:24:25 2003
@@ -13,12 +13,14 @@
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