summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2023-01-31 14:53:14 (GMT)
committerGitHub <noreply@github.com>2023-01-31 14:53:14 (GMT)
commit0c37ea9abad2eae146ce117eca0503aaedc96c0f (patch)
tree47a479282bfea5638bc41469af09339fead985fe /Misc
parent43af2dbb54785e34f67813eee08156647f340b64 (diff)
downloadcpython-0c37ea9abad2eae146ce117eca0503aaedc96c0f.zip
cpython-0c37ea9abad2eae146ce117eca0503aaedc96c0f.tar.gz
cpython-0c37ea9abad2eae146ce117eca0503aaedc96c0f.tar.bz2
[3.11] gh-101400: Fix incorrect lineno in exception message on contin… (gh-101447)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-01-30-08-59-47.gh-issue-101400.Di_ZFm.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-01-30-08-59-47.gh-issue-101400.Di_ZFm.rst b/Misc/NEWS.d/next/Core and Builtins/2023-01-30-08-59-47.gh-issue-101400.Di_ZFm.rst
new file mode 100644
index 0000000..f3dd783
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-01-30-08-59-47.gh-issue-101400.Di_ZFm.rst
@@ -0,0 +1,2 @@
+Fix wrong lineno in exception message on :keyword:`continue` or
+:keyword:`break` which are not in a loop. Patch by Dong-hee Na.