[Zope-Checkins] CVS: ZODB3/ZEO/zrpc - connection.py:1.49.2.1 client.py:1.25.14.1

Jeremy Hylton jeremy at zope.com
Wed Sep 10 23:36:19 EDT 2003


Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv16183/ZEO/zrpc

Modified Files:
      Tag: ZODB3-3_2-branch
	connection.py client.py 
Log Message:
Promote to new-style classes to help with leak detection.


=== ZODB3/ZEO/zrpc/connection.py 1.49 => 1.49.2.1 ===
--- ZODB3/ZEO/zrpc/connection.py:1.49	Fri Jun 13 17:56:38 2003
+++ ZODB3/ZEO/zrpc/connection.py	Wed Sep 10 22:36:19 2003
@@ -67,7 +67,7 @@
         self.ready.wait()
         Delay.error(self, exc_info)
 
-class Connection(smac.SizedMessageAsyncConnection):
+class Connection(smac.SizedMessageAsyncConnection, object):
     """Dispatcher for RPC on object on both sides of socket.
 
     The connection supports synchronous calls, which expect a return,


=== ZODB3/ZEO/zrpc/client.py 1.25 => 1.25.14.1 ===
--- ZODB3/ZEO/zrpc/client.py:1.25	Mon Mar  3 13:02:39 2003
+++ ZODB3/ZEO/zrpc/client.py	Wed Sep 10 22:36:19 2003
@@ -28,7 +28,7 @@
 from ZEO.zrpc.trigger import trigger
 from ZEO.zrpc.connection import ManagedConnection
 
-class ConnectionManager:
+class ConnectionManager(object):
     """Keeps a connection up over time"""
 
     def __init__(self, addrs, client, tmin=1, tmax=180):




More information about the Zope-Checkins mailing list