Kaydet (Commit) af88e7ed authored tarafından Nathaniel J. Smith's avatar Nathaniel J. Smith Kaydeden (comit) Berker Peksag

bpo-27122: Fix comment to point to correct issue number (#47)

It took me quite a bit to figure out what this was referring to,
since the given issue number is wrong, and the original commit
message I found through git blame lists a different, also wrong
issue number... see https://bugs.python.org/issue27122#msg279449
üst 2294f3ae
...@@ -105,7 +105,7 @@ class _GeneratorContextManager(ContextDecorator, AbstractContextManager): ...@@ -105,7 +105,7 @@ class _GeneratorContextManager(ContextDecorator, AbstractContextManager):
# raised inside the "with" statement from being suppressed. # raised inside the "with" statement from being suppressed.
return exc is not value return exc is not value
except RuntimeError as exc: except RuntimeError as exc:
# Don't re-raise the passed in exception. (issue27112) # Don't re-raise the passed in exception. (issue27122)
if exc is value: if exc is value:
return False return False
# Likewise, avoid suppressing if a StopIteration exception # Likewise, avoid suppressing if a StopIteration exception
......
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