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 terry.reedy
Recipients Ravi.Sinha, chris.jerdonek, docs@python, r.david.murray, terry.reedy
Date 2012-10-07.19:04:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1349636698.63.0.884926974079.issue16154@psf.upfronthosting.co.za>
In-reply-to
Content
I considered the directive, but I mildly prefer the code change.

end = ' ')  guarantees a blank between fields
            even if one formats a too-large number
end = '')  does not add a blank to the end.
end = '' if base == 'b' else ' ')  does both (but depends on having a
                                  'last field' condition.

I actual practice, I might use the third option.
However, if you do the commit, it is your choice.
History
Date User Action Args
2012-10-07 19:04:58terry.reedysetrecipients: + terry.reedy, r.david.murray, chris.jerdonek, docs@python, Ravi.Sinha
2012-10-07 19:04:58terry.reedysetmessageid: <1349636698.63.0.884926974079.issue16154@psf.upfronthosting.co.za>
2012-10-07 19:04:58terry.reedylinkissue16154 messages
2012-10-07 19:04:58terry.reedycreate