summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCarey Metcalfe <carey@cmetcalfe.ca>2023-05-01 07:32:04 (GMT)
committerGitHub <noreply@github.com>2023-05-01 07:32:04 (GMT)
commit487f55d5801a9ae7d79d37e259e8c377c9acd39b (patch)
tree75fec7a70ef0819fca6769c0c20aa1b552eea70f /Misc
parent93107aa2a49a9354ffb10b3cd263dc3e99ebdeff (diff)
downloadcpython-487f55d5801a9ae7d79d37e259e8c377c9acd39b.zip
cpython-487f55d5801a9ae7d79d37e259e8c377c9acd39b.tar.gz
cpython-487f55d5801a9ae7d79d37e259e8c377c9acd39b.tar.bz2
gh-103895: Improve how invalid `Exception.__notes__` are displayed (#103897)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-04-26-17-56-18.gh-issue-103895.ESB6tn.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-04-26-17-56-18.gh-issue-103895.ESB6tn.rst b/Misc/NEWS.d/next/Core and Builtins/2023-04-26-17-56-18.gh-issue-103895.ESB6tn.rst
new file mode 100644
index 0000000..6fed304
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-04-26-17-56-18.gh-issue-103895.ESB6tn.rst
@@ -0,0 +1,3 @@
+Improve handling of edge cases in showing ``Exception.__notes__``. Ensures
+that the messages always end with a newline and that string/bytes are not
+exploded over multiple lines. Patch by Carey Metcalfe.