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 mariocj89
Recipients mariocj89
Date 2017-12-10.10:11:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512900720.16.0.213398074469.issue32267@psf.upfronthosting.co.za>
In-reply-to
Content
At the moment strptime misparses all microsecond specifications that do not have exactly 6 digits as it is just converted into an int and considered microsecond.

This bug was introduced with the implementation in bpo-31800

Example:
_strptime._strptime("+01:30:30.001", "%z") == _strptime._strptime("+01:30:30.000001", "%z")
History
Date User Action Args
2017-12-10 10:12:00mariocj89setrecipients: + mariocj89
2017-12-10 10:12:00mariocj89setmessageid: <1512900720.16.0.213398074469.issue32267@psf.upfronthosting.co.za>
2017-12-10 10:12:00mariocj89linkissue32267 messages
2017-12-10 10:11:59mariocj89create