summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/rpc.py
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-11-06 05:36:44 (GMT)
committerNed Deily <nad@acm.org>2011-11-06 05:36:44 (GMT)
commit55f87578a103e8da4b7c4211338bccc702bdba6e (patch)
tree4ee774f63016e6a4eedbc9933530dd8327407315 /Lib/idlelib/rpc.py
parentdeb925fc14fb12f9ef2a0773eb80ad81db7ec3ac (diff)
downloadcpython-55f87578a103e8da4b7c4211338bccc702bdba6e.zip
cpython-55f87578a103e8da4b7c4211338bccc702bdba6e.tar.gz
cpython-55f87578a103e8da4b7c4211338bccc702bdba6e.tar.bz2
Issue #13300: Fix IDLE Restart Shell command failure introduced by
3a5a0943b201. Do not close listening socket on subprocess restart.
Diffstat (limited to 'Lib/idlelib/rpc.py')
-rw-r--r--Lib/idlelib/rpc.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py
index ddb36bd..def4394 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