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-20.00:26:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395275168.7.0.196652816799.issue7994@psf.upfronthosting.co.za>
In-reply-to
Content
None does have __format__, but it raises exception

>>> dir(None)
['__bool__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']

>>> None.__format__
<built-in method __format__ of NoneType object at 0x50BB2760>
History
Date User Action Args
2014-03-20 00:26:08hctsetrecipients: + hct, mark.dickinson, eric.smith, ezio.melotti, r.david.murray, flox, meador.inge, python-dev
2014-03-20 00:26:08hctsetmessageid: <1395275168.7.0.196652816799.issue7994@psf.upfronthosting.co.za>
2014-03-20 00:26:08hctlinkissue7994 messages
2014-03-20 00:26:08hctcreate