Commit a8173283 authored by Gregory P. Smith's avatar Gregory P. Smith

Undo an unnecessary else: and indentation that r60104 added.

try:
  ...
except:
  ...
  raise
else:
  ...

the else: is unecessary due to the blind except: with a raise.
parent 3d9ae06e
......@@ -1005,7 +1005,6 @@ class Popen(object):
if gc_was_enabled:
gc.enable()
raise
else:
self._child_created = True
if self.pid == 0:
# Child
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment