Kaydet (Commit) b08f51b9 authored tarafından Guido van Rossum's avatar Guido van Rossum

Mike Meyer reports a bug in his patch (several months ago) that

accepts long month names.  One essential line was missing.  Fixed now.
üst 9ef8635c
......@@ -833,6 +833,7 @@ def parsedate_tz(data):
if not mm in _monthnames:
return None
mm = _monthnames.index(mm)+1
if mm > 12: mm = mm - 12
if dd[-1] == ',':
dd = dd[:-1]
i = string.find(yy, ':')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment