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 mrabarnett
Recipients mrabarnett, sil
Date 2008-11-25.18:36:54
SpamBayes Score 0.014719022
Marked as misclassified No
Message-id <1227638217.3.0.946216266818.issue4430@psf.upfronthosting.co.za>
In-reply-to
Content
Subversion is formatting a string from a time (strftime), so a repeated
placeholder is OK.

You're trying to _parse_ a time from a string (strptime). If you're
telling it that 2 different parts of the string are the date, what
should it do? The Pythonic thing to do is raise an exception.

(I suppose an alternative would be to raise an exception only if they
give different results.)
History
Date User Action Args
2008-11-25 18:36:57mrabarnettsetrecipients: + mrabarnett, sil
2008-11-25 18:36:57mrabarnettsetmessageid: <1227638217.3.0.946216266818.issue4430@psf.upfronthosting.co.za>
2008-11-25 18:36:56mrabarnettlinkissue4430 messages
2008-11-25 18:36:55mrabarnettcreate