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 jwilk
Recipients jwilk
Date 2014-10-10.10:09:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412935761.9.0.479388306939.issue22597@psf.upfronthosting.co.za>
In-reply-to
Content
>>> '%(eggs)s %s' % {'eggs': 'ham'}
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: not enough arguments for format string

>>> '%s %(eggs)s' % {'eggs': 'ham'}
"{'eggs': 'ham'} ham"

I would expect a raised exception also in the latter case.
History
Date User Action Args
2014-10-10 10:09:21jwilksetrecipients: + jwilk
2014-10-10 10:09:21jwilksetmessageid: <1412935761.9.0.479388306939.issue22597@psf.upfronthosting.co.za>
2014-10-10 10:09:21jwilklinkissue22597 messages
2014-10-10 10:09:21jwilkcreate