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 r.david.murray
Recipients BreamoreBoy, eric.smith, ezio.melotti, flox, hct, mark.dickinson, meador.inge, python-dev, r.david.murray
Date 2014-03-20.00:41:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395276076.82.0.834960055916.issue7994@psf.upfronthosting.co.za>
In-reply-to
Content
NoneType is a subclass of object.

>>> class Foo(object):
...    pass
... 
>>> f = Foo()
>>> f.__format__
<built-in method __format__ of Foo object at 0xb71543b4>

ie: the exception is being raised by object.__format__, as provided for by this issue.
History
Date User Action Args
2014-03-20 00:41:16r.david.murraysetrecipients: + r.david.murray, mark.dickinson, eric.smith, ezio.melotti, flox, meador.inge, BreamoreBoy, python-dev, hct
2014-03-20 00:41:16r.david.murraysetmessageid: <1395276076.82.0.834960055916.issue7994@psf.upfronthosting.co.za>
2014-03-20 00:41:16r.david.murraylinkissue7994 messages
2014-03-20 00:41:16r.david.murraycreate