mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
Issue #13300: Fix IDLE Restart Shell command failure introduced by
3a5a0943b201. Do not close listening socket on subprocess restart.
This commit is contained in:
parent
deb925fc14
commit
55f87578a1
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue