From ef94869f4fba32cbae214e4763a61e69d0cdad12 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 20 May 2015 16:15:02 +0300 Subject: Issue #24245: Eliminated senseless expect clauses that have no any effect in IDLE. Patch by Martin Panter. --- Lib/idlelib/rpc.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Lib/idlelib/rpc.py') diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index f2aae516c8..aa33041e7b 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -340,10 +340,7 @@ class SocketIO(object): n = self.sock.send(s[:BUFSIZE]) except (AttributeError, TypeError): raise OSError("socket no longer exists") - except OSError: - raise - else: - s = s[n:] + s = s[n:] buff = b'' bufneed = 4 -- cgit v1.2.1