From bbe7b0ad2a4bc34e5f9ef3b26653ed5c2642d319 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Mon, 3 Oct 2011 20:33:24 +0200 Subject: Fix a few ResourceWarnings in idle --- Lib/idlelib/configHandler.py | 3 ++- Lib/idlelib/rpc.py | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index 73b8db5..79315ef 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -145,7 +145,8 @@ class IdleUserConfParser(IdleConfParser): except IOError: os.unlink(fname) cfgFile = open(fname, 'w') - self.write(cfgFile) + with cfgFile: + self.write(cfgFile) else: self.RemoveFile() diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index 0c56ccd..53f4aa8 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -534,6 +534,10 @@ 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 v0.12