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 redrooster
Recipients redrooster
Date 2020-09-28.10:55:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1601290546.43.0.7600207822.issue41874@roundup.psfhosted.org>
In-reply-to
Content
This fails, because the date is before 1900:
d = datetime.strptime("28. Februar 1899", '%d. %B %Y')

But the opposite conversion direction works:
d=datetime(1899,2,28)
d.strftime('%d. %B %Y')

prints out "28. Februar 1899" as it should be.
History
Date User Action Args
2020-09-28 10:55:46redroostersetrecipients: + redrooster
2020-09-28 10:55:46redroostersetmessageid: <1601290546.43.0.7600207822.issue41874@roundup.psfhosted.org>
2020-09-28 10:55:46redroosterlinkissue41874 messages
2020-09-28 10:55:46redroostercreate