-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
email.utils.parsedate_tz() crashes on certain inputs #95087
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
wbolster
added a commit
to wbolster/cpython
that referenced
this issue
Jul 22, 2022
Similar to bpo-45001 (pythonGH-89164), this makes email date parsing more robust against malformed input. parsedate_tz() is supposed to return None for malformed input, but could crash on certain inputs, e.g. >>> email.utils.parsedate_tz('17 June , 2022') IndexError: string index out of range Fixes pythongh-95087.
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Jul 24, 2022
…odule Co-authored-by: wouter bolsterlee <[email protected]>
This was referenced Jul 24, 2022
Merged
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jul 25, 2022
…odule (pythonGH-95201) Co-authored-by: wouter bolsterlee <[email protected]> (cherry picked from commit ea5ed0b) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Jul 25, 2022
…H-95201) Co-authored-by: wouter bolsterlee <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jul 25, 2022
…odule (pythonGH-95201) Co-authored-by: wouter bolsterlee <[email protected]> (cherry picked from commit ea5ed0b) Co-authored-by: Serhiy Storchaka <[email protected]>
miss-islington
added a commit
that referenced
this issue
Jul 25, 2022
…H-95201) Co-authored-by: wouter bolsterlee <[email protected]> (cherry picked from commit ea5ed0b) Co-authored-by: Serhiy Storchaka <[email protected]>
miss-islington
added a commit
that referenced
this issue
Jul 25, 2022
…H-95201) Co-authored-by: wouter bolsterlee <[email protected]> (cherry picked from commit ea5ed0b) Co-authored-by: Serhiy Storchaka <[email protected]>
close via #95201 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Date/time parsing routines in the
email
module can crash (instead of returning None) for certain inputs:This is similar to bpo-45001 (GH-89164)
The text was updated successfully, but these errors were encountered: