]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Undo an unnecessary else: and indentation that r60104 added.
authorGregory P. Smith <greg@mad-scientist.com>
Sat, 19 Jan 2008 22:23:56 +0000 (22:23 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sat, 19 Jan 2008 22:23:56 +0000 (22:23 +0000)
commit92ffc634e48268d357f6bde2ed1b7ac26bfb2631
treed5323654808598a26343d4237abbec3af22d1fb1
parent79e3d55be4646be1624fe75bae2d0a2a6d756d02
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.
Lib/subprocess.py