Commit 84c69ac5 authored by Phillip J. Eby's avatar Phillip J. Eby

Fix typos; enhance comments on patch for SF #1462485.

 --This line, and those below, will be ignored--

M    contextlib.py
parent 90141a1a
...@@ -32,8 +32,9 @@ class GeneratorContextManager(object): ...@@ -32,8 +32,9 @@ class GeneratorContextManager(object):
self.gen.throw(type, value, traceback) self.gen.throw(type, value, traceback)
raise RuntimeError("generator didn't stop after throw()") raise RuntimeError("generator didn't stop after throw()")
except StopIteration: except StopIteration:
# Supress the exception unless it's the same exception the # Suppress the exception *unless* it's the same exception that
# was passed to throw(). # was passed to throw(). This prevents a StopIteration
# raised inside the "with" statement from being suppressed
return sys.exc_info()[1] is not value return sys.exc_info()[1] is not value
except: except:
# only re-raise if it's *not* the exception that was # only re-raise if it's *not* the exception that was
......
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