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 eric.smith
Recipients eric.smith, ezio.melotti, flox, hct, mark.dickinson, meador.inge, python-dev, r.david.murray
Date 2014-03-19.00:34:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395189270.97.0.323146819773.issue7994@psf.upfronthosting.co.za>
In-reply-to
Content
I think the best we could do is have None.__format__ be:

def __format__(self, fmt):
   return str(self).__format__(fmt)

Or its logical equivalent.

But this seems more like papering over a bug, instead of actually fixing a problem. My suggestion is to use:
"{!s}".format(None)
That is: if you want to format a string, then explicitly force the argument to be a string.

I don't think None should be special and be auto-converted to a string.
History
Date User Action Args
2014-03-19 00:34:31eric.smithsetrecipients: + eric.smith, mark.dickinson, ezio.melotti, r.david.murray, flox, meador.inge, python-dev, hct
2014-03-19 00:34:30eric.smithsetmessageid: <1395189270.97.0.323146819773.issue7994@psf.upfronthosting.co.za>
2014-03-19 00:34:30eric.smithlinkissue7994 messages
2014-03-19 00:34:30eric.smithcreate