mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
parent
f59ed3c310
commit
b9e687618d
3 changed files with 6 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue