From 55f87578a103e8da4b7c4211338bccc702bdba6e Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Sat, 5 Nov 2011 22:36:44 -0700 Subject: Issue #13300: Fix IDLE Restart Shell command failure introduced by 3a5a0943b201. Do not close listening socket on subprocess restart. --- Lib/idlelib/rpc.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Lib/idlelib/rpc.py') diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index ddb36bde44..def43945ae 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -534,10 +534,6 @@ class RPCClient(SocketIO): def get_remote_proxy(self, oid): return RPCProxy(self, oid) - def close(self): - self.listening_sock.close() - SocketIO.close(self) - class RPCProxy(object): __methods = None -- cgit v1.2.1