diff options
author | CF Bolz-Tereick <cfbolz@gmx.de> | 2023-07-13 06:12:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 06:12:56 (GMT) |
commit | 7e6ce48872fa3de98c986057764f35e1b2f4b936 (patch) | |
tree | 340b37ca60b5d12c2a25be0786a3c894c3c03c9d /Misc | |
parent | af51bd7cda9c0cba149b882c1e501765595e5fc3 (diff) | |
download | cpython-7e6ce48872fa3de98c986057764f35e1b2f4b936.zip cpython-7e6ce48872fa3de98c986057764f35e1b2f4b936.tar.gz cpython-7e6ce48872fa3de98c986057764f35e1b2f4b936.tar.bz2 |
gh-106628: email parsing speedup (gh-106629)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-07-11-16-36-22.gh-issue-106628.Kx8Zvc.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-07-11-16-36-22.gh-issue-106628.Kx8Zvc.rst b/Misc/NEWS.d/next/Library/2023-07-11-16-36-22.gh-issue-106628.Kx8Zvc.rst new file mode 100644 index 0000000..6fa276e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-07-11-16-36-22.gh-issue-106628.Kx8Zvc.rst @@ -0,0 +1,2 @@ +Speed up parsing of emails by about 20% by not compiling a new regular +expression for every single email. |