diff options
author | Ben Hoyt <benhoyt@gmail.com> | 2021-10-13 16:21:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 16:21:27 (GMT) |
commit | b9e687618d3489944f29adbd2be50b46940c9e70 (patch) | |
tree | 4b842bd26f144865265546fae88c373a62202725 /Lib/email | |
parent | f59ed3c310a7ceebf2a56a84ea969a7f75d95b64 (diff) | |
download | cpython-b9e687618d3489944f29adbd2be50b46940c9e70.zip cpython-b9e687618d3489944f29adbd2be50b46940c9e70.tar.gz cpython-b9e687618d3489944f29adbd2be50b46940c9e70.tar.bz2 |
bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/_parseaddr.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/email/_parseaddr.py b/Lib/email/_parseaddr.py index 977fedf..ba5ad5a 100644 --- a/Lib/email/_parseaddr.py +++ b/Lib/email/_parseaddr.py @@ -128,6 +128,8 @@ def _parsedate_tz(data): tss = 0 elif len(tm) == 3: [thh, tmm, tss] = tm + else: + return None else: return None try: |