Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 89b1824

Browse filesBrowse files
authored
bpo-27122: Fix comment to point to correct issue number (#48)
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 (cherry picked from commit af88e7e)
1 parent c2328ec commit 89b1824
Copy full SHA for 89b1824

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎Lib/contextlib.py

Copy file name to clipboardExpand all lines: Lib/contextlib.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __exit__(self, type, value, traceback):
105105
# raised inside the "with" statement from being suppressed.
106106
return exc is not value
107107
except RuntimeError as exc:
108-
# Don't re-raise the passed in exception. (issue27112)
108+
# Don't re-raise the passed in exception. (issue27122)
109109
if exc is value:
110110
return False
111111
# Likewise, avoid suppressing if a StopIteration exception

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.