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 hct
Recipients eric.smith, ezio.melotti, flox, hct, mark.dickinson, meador.inge, python-dev, r.david.murray
Date 2014-03-19.20:22:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395260554.64.0.227956319846.issue7994@psf.upfronthosting.co.za>
In-reply-to
Content
I use lots of complicated format such as the following
"{:{:s}{:d}s}".format( self.pcs,self.format_align, self.max_length )

it looks like the way to do it from now on will be
"{!s:{:s}{:d}}".format( self.pcs,self.format_align, self.max_length )
History
Date User Action Args
2014-03-19 20:22:34hctsetrecipients: + hct, mark.dickinson, eric.smith, ezio.melotti, r.david.murray, flox, meador.inge, python-dev
2014-03-19 20:22:34hctsetmessageid: <1395260554.64.0.227956319846.issue7994@psf.upfronthosting.co.za>
2014-03-19 20:22:34hctlinkissue7994 messages
2014-03-19 20:22:34hctcreate