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 asvetlov
Recipients asvetlov, r.david.murray, vstinner
Date 2013-08-15.18:38:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376591885.24.0.106616524464.issue18750@psf.upfronthosting.co.za>
In-reply-to
Content
For dict it is correct from my perspective.
"" % {'a': 'b'}
tries to substitute format specs like "%(a)s" and does nothing if spec is not present.

But list case like
"" % [1]
confuse me.
History
Date User Action Args
2013-08-15 18:38:05asvetlovsetrecipients: + asvetlov, vstinner, r.david.murray
2013-08-15 18:38:05asvetlovsetmessageid: <1376591885.24.0.106616524464.issue18750@psf.upfronthosting.co.za>
2013-08-15 18:38:05asvetlovlinkissue18750 messages
2013-08-15 18:38:04asvetlovcreate