This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients dellair.jie, vstinner
Date 2014-01-07.15:00:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389106824.16.0.0435629018957.issue20163@psf.upfronthosting.co.za>
In-reply-to
Content
Try to isolate which field fails. Example:

>>> import time
>>> time.strptime ("10-Dec-13.20:07:49", "%d-%b-%y.%H:%M:%S")
time.struct_time(tm_year=2013, tm_mon=12, tm_mday=10, tm_hour=20, tm_min=7, tm_sec=49, tm_wday=1, tm_yday=344, tm_isdst=-1)
>>> time.strptime ("10-Dec-13", "%d-%b-%y")
time.struct_time(tm_year=2013, tm_mon=12, tm_mday=10, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=1, tm_yday=344, tm_isdst=-1)
>>> time.strptime ("10-Dec", "%d-%b")
time.struct_time(tm_year=1900, tm_mon=12, tm_mday=10, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=344, tm_isdst=-1)
>>> time.strptime ("Dec", "%b")
time.struct_time(tm_year=1900, tm_mon=12, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=5, tm_yday=335, tm_isdst=-1)
History
Date User Action Args
2014-01-07 15:00:24vstinnersetrecipients: + vstinner, dellair.jie
2014-01-07 15:00:24vstinnersetmessageid: <1389106824.16.0.0435629018957.issue20163@psf.upfronthosting.co.za>
2014-01-07 15:00:24vstinnerlinkissue20163 messages
2014-01-07 15:00:24vstinnercreate