mirror of https://github.com/python/cpython
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.
This commit is contained in:
parent
79e3d55be4
commit
92ffc634e4
|
@ -1005,7 +1005,6 @@ class Popen(object):
|
||||||
if gc_was_enabled:
|
if gc_was_enabled:
|
||||||
gc.enable()
|
gc.enable()
|
||||||
raise
|
raise
|
||||||
else:
|
|
||||||
self._child_created = True
|
self._child_created = True
|
||||||
if self.pid == 0:
|
if self.pid == 0:
|
||||||
# Child
|
# Child
|
||||||
|
|
Loading…
Reference in New Issue