[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - client.py:1.7 connection.py:1.17
Guido van Rossum
guido@python.org
Tue, 10 Sep 2002 18:08:44 -0400
Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv20121/zrpc
Modified Files:
client.py connection.py
Log Message:
There's no need for notify_closed() to take a 'conn' argument.
=== ZODB3/ZEO/zrpc/client.py 1.6 => 1.7 ===
--- ZODB3/ZEO/zrpc/client.py:1.6 Fri Aug 30 17:41:35 2002
+++ ZODB3/ZEO/zrpc/client.py Tue Sep 10 18:08:44 2002
@@ -162,7 +162,7 @@
self.connection = c
self._thread = None
- def notify_closed(self, conn):
+ def notify_closed(self):
self.connected = 0
self.connection = None
self.client.notifyDisconnected()
=== ZODB3/ZEO/zrpc/connection.py 1.16 => 1.17 ===
--- ZODB3/ZEO/zrpc/connection.py:1.16 Sat Sep 7 20:16:38 2002
+++ ZODB3/ZEO/zrpc/connection.py Tue Sep 10 18:08:44 2002
@@ -462,4 +462,4 @@
def close(self):
self.__super_close()
- self.__mgr.notify_closed(self)
+ self.__mgr.notify_closed()