mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
parsedate_tz(): Be slightly more lenient when there's no day of the
week. Patch given by Daniel Berlin in SF bug # 732761. Also closes SF bug # 727719. Backport candidate.
This commit is contained in:
parent
86e1790cad
commit
b5dc39f02c
1 changed files with 2 additions and 3 deletions
|
|
@ -54,8 +54,7 @@ def parsedate_tz(data):
|
||||||
del data[0]
|
del data[0]
|
||||||
else:
|
else:
|
||||||
i = data[0].rfind(',')
|
i = data[0].rfind(',')
|
||||||
if i < 0:
|
if i >= 0:
|
||||||
return None
|
|
||||||
data[0] = data[0][i+1:]
|
data[0] = data[0][i+1:]
|
||||||
if len(data) == 3: # RFC 850 date, deprecated
|
if len(data) == 3: # RFC 850 date, deprecated
|
||||||
stuff = data[0].split('-')
|
stuff = data[0].split('-')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue