cpython: 04c4f141874b (original) (raw)
Mercurial > cpython
changeset 87579:04c4f141874b 2.7
Issue #19794: Improved markup for True/False constants. [#19794]
Serhiy Storchaka storchaka@gmail.com | |
---|---|
date | Tue, 26 Nov 2013 17:32:03 +0200 |
parents | 313d9bb253bf |
children | 6d6a018a3bb0 |
files | Doc/library/decimal.rst |
diffstat | 1 files changed, 11 insertions(+), 11 deletions(-)[+] [-] Doc/library/decimal.rst 22 |
line wrap: on
line diff
--- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -1226,52 +1226,52 @@ In addition to the three supplied contex .. method:: is_canonical(x)
Returns True if *x* is canonical; otherwise returns False.[](#l1.7)
Returns ``True`` if *x* is canonical; otherwise returns ``False``.[](#l1.8)
Returns True if *x* is finite; otherwise returns False.[](#l1.13)
Returns ``True`` if *x* is finite; otherwise returns ``False``.[](#l1.14)
Returns True if *x* is infinite; otherwise returns False.[](#l1.19)
Returns ``True`` if *x* is infinite; otherwise returns ``False``.[](#l1.20)
Returns True if *x* is a qNaN or sNaN; otherwise returns False.[](#l1.25)
Returns ``True`` if *x* is a qNaN or sNaN; otherwise returns ``False``.[](#l1.26)
Returns True if *x* is a normal number; otherwise returns False.[](#l1.31)
Returns ``True`` if *x* is a normal number; otherwise returns ``False``.[](#l1.32)
Returns True if *x* is a quiet NaN; otherwise returns False.[](#l1.37)
Returns ``True`` if *x* is a quiet NaN; otherwise returns ``False``.[](#l1.38)
Returns True if *x* is negative; otherwise returns False.[](#l1.43)
Returns ``True`` if *x* is negative; otherwise returns ``False``.[](#l1.44)
Returns True if *x* is a signaling NaN; otherwise returns False.[](#l1.49)
Returns ``True`` if *x* is a signaling NaN; otherwise returns ``False``.[](#l1.50)
Returns True if *x* is subnormal; otherwise returns False.[](#l1.55)
Returns ``True`` if *x* is subnormal; otherwise returns ``False``.[](#l1.56)
Returns True if *x* is a zero; otherwise returns False.[](#l1.61)
Returns ``True`` if *x* is a zero; otherwise returns ``False``.[](#l1.62)
.. method:: ln(x) @@ -1431,7 +1431,7 @@ In addition to the three supplied contex .. method:: same_quantum(x, y)
Returns True if the two operands have the same exponent.[](#l1.70)
Returns ``True`` if the two operands have the same exponent.[](#l1.71)