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 belopolsky
Recipients BreamoreBoy, JohnLeitch, belopolsky, brycedarling, larry, lemburg, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2015-09-05.01:12:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441415576.39.0.45444040304.issue24917@psf.upfronthosting.co.za>
In-reply-to
Content
> if there's a risk I'm overlooking I'd like to better understand it,
> and the relevant Python documentation should be updated.

I don't think there is any special risk that you are overlooking other than a documented fact that Python's strftime is a thin layer on top of system strftime and these are notoriously buggy on many systems.

A python application that accepts custom formats from users should limit those formats to a set that is known to work on the targeted platforms.  Relying on strftime to properly return an error code and not do anything nasty is probably not a good idea.

This said, I express no opinion on the severity of this bug.
History
Date User Action Args
2015-09-05 01:12:56belopolskysetrecipients: + belopolsky, lemburg, paul.moore, vstinner, larry, tim.golden, BreamoreBoy, zach.ware, steve.dower, JohnLeitch, brycedarling
2015-09-05 01:12:56belopolskysetmessageid: <1441415576.39.0.45444040304.issue24917@psf.upfronthosting.co.za>
2015-09-05 01:12:56belopolskylinkissue24917 messages
2015-09-05 01:12:55belopolskycreate