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 pitrou
Recipients barry, benjamin.peterson, georg.brandl, gvanrossum, pitrou, skip.montanaro, vstinner
Date 2008-12-03.09:36:11
SpamBayes Score 0.00020033543
Marked as misclassified No
Message-id <1228296969.9481.22.camel@localhost>
In-reply-to <1228279391.8.0.954310465682.issue2306@psf.upfronthosting.co.za>
Content
Some small mistakes :

* « an object always compares equal to itself (i.e., ``x is y`` implies
``x == y``; this is true even for *NaN*) ». Actually NaN is not equal to
itself:

True
>>> f == f
False

* « The traceback printed when an unhandled exception occurs walks the
chain of :attr:`__cause__` and :attr:`__context__` attributes and prints
a separate traceback for each component of the chain, with the primary
exception at the top. » If by "primary exception" you mean the latest
one, then it's printed at the bottom, not the top.
History
Date User Action Args
2008-12-03 09:36:19pitrousetrecipients: + pitrou, gvanrossum, skip.montanaro, barry, georg.brandl, vstinner, benjamin.peterson
2008-12-03 09:36:12pitroulinkissue2306 messages
2008-12-03 09:36:11pitroucreate