summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-22 11:07:38 (GMT)
committerGitHub <noreply@github.com>2024-05-22 11:07:38 (GMT)
commit6892b400dc8c95375ef31f6d716d62a6ff0c4cf2 (patch)
tree83f4a71706ca31c63980f353c564ab5059a1f122 /Misc
parent414346e56d98d655f25bbac0bed1811aaa651636 (diff)
downloadcpython-6892b400dc8c95375ef31f6d716d62a6ff0c4cf2.zip
cpython-6892b400dc8c95375ef31f6d716d62a6ff0c4cf2.tar.gz
cpython-6892b400dc8c95375ef31f6d716d62a6ff0c4cf2.tar.bz2
[3.13] gh-118643: Fix AttributeError in the email module (GH-119099) (GH-119389)
Fix regression introduced in gh-100884: AttributeError when re-fold a long address list. Also fix more cases of incorrect encoding of the address separator in the address list missed in gh-100884. (cherry picked from commit 858b9e85fcdd495947c9e892ce6e3734652c48f2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-05-16-17-31-46.gh-issue-118643.hAWH4C.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-16-17-31-46.gh-issue-118643.hAWH4C.rst b/Misc/NEWS.d/next/Library/2024-05-16-17-31-46.gh-issue-118643.hAWH4C.rst
new file mode 100644
index 0000000..e86a49a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-05-16-17-31-46.gh-issue-118643.hAWH4C.rst
@@ -0,0 +1,2 @@
+Fix an AttributeError in the :mod:`email` module when re-fold a long address
+list. Also fix more cases of incorrect encoding of the address separator in the address list.