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:
Gregory P. Smith 2008-01-19 22:23:56 +00:00
parent 79e3d55be4
commit 92ffc634e4
1 changed files with 49 additions and 50 deletions

View File

@ -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