diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:28:30 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:28:30 (GMT) |
commit | a6bac95a3c6eb926d3eded04e4b04a1d552053d1 (patch) | |
tree | 8d12149fdb2dcbdcf4461af934f89ddee5fb1e28 /Doc/library/decimal.rst | |
parent | bfd1edd15541ff3d8ea89385faecdbcbba1a9773 (diff) | |
download | cpython-a6bac95a3c6eb926d3eded04e4b04a1d552053d1.zip cpython-a6bac95a3c6eb926d3eded04e4b04a1d552053d1.tar.gz cpython-a6bac95a3c6eb926d3eded04e4b04a1d552053d1.tar.bz2 |
issue10403 - Let's not use members anymore. Use 'attribute' where it denotes attribute and 'methods' where it denotes methods. Context should clarify usage.
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 9d5b32f..d6cd504 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -654,7 +654,7 @@ Decimal objects Normalize the number by stripping the rightmost trailing zeros and converting any result equal to :const:`Decimal('0')` to - :const:`Decimal('0e0')`. Used for producing canonical values for members + :const:`Decimal('0e0')`. Used for producing canonical values for attributes of an equivalence class. For example, ``Decimal('32.100')`` and ``Decimal('0.321000e+2')`` both normalize to the equivalent value ``Decimal('32.1')``. |