summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorBen Hoyt <benhoyt@gmail.com>2021-10-13 16:21:27 (GMT)
committerGitHub <noreply@github.com>2021-10-13 16:21:27 (GMT)
commitb9e687618d3489944f29adbd2be50b46940c9e70 (patch)
tree4b842bd26f144865265546fae88c373a62202725 /Lib/email
parentf59ed3c310a7ceebf2a56a84ea969a7f75d95b64 (diff)
downloadcpython-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.py2
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: