Message76817
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. |
|
Date |
User |
Action |
Args |
2008-12-03 09:36:19 | pitrou | set | recipients:
+ pitrou, gvanrossum, skip.montanaro, barry, georg.brandl, vstinner, benjamin.peterson |
2008-12-03 09:36:12 | pitrou | link | issue2306 messages |
2008-12-03 09:36:11 | pitrou | create | |
|