[Zope-Checkins] CVS: Zope/lib/python/ZEO/zrpc - trigger.py:1.8.14.1
Andreas Jung
andreas@andreas-jung.com
Sat, 9 Nov 2002 03:43:30 -0500
Update of /cvs-repository/Zope/lib/python/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv26094/lib/python/ZEO/zrpc
Modified Files:
Tag: ajung-restructuredtext-integration-branch
trigger.py
Log Message:
merge from trunk
=== Zope/lib/python/ZEO/zrpc/trigger.py 1.8 => 1.8.14.1 ===
--- Zope/lib/python/ZEO/zrpc/trigger.py:1.8 Wed Oct 2 14:37:17 2002
+++ Zope/lib/python/ZEO/zrpc/trigger.py Sat Nov 9 03:42:59 2002
@@ -11,11 +11,10 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
-import asyncore
+import asyncore
import os
import socket
-import string
import thread
if os.name == 'posix':
@@ -62,7 +61,7 @@
# Override the asyncore close() method, because it seems that
# it would only close the r file descriptor and not w. The
- # constructor calls file_dispactcher.__init__ and passes r,
+ # constructor calls file_dispatcher.__init__ and passes r,
# which would get stored in a file_wrapper and get closed by
# the default close. But that would leave w open...