summaryrefslogtreecommitdiffstats
path: root/Doc/library/decimal.rst
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-02-18 14:49:50 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-02-18 14:49:50 (GMT)
commit84230a1eb27e2b11a2eb8d0d4d0145179719d4f3 (patch)
tree0818aecadbb00bb62991e4ccfd64968fa33bb667 /Doc/library/decimal.rst
parent184bdfb03a6a012ba76c43b9a8a98a67ad4d8bad (diff)
downloadcpython-84230a1eb27e2b11a2eb8d0d4d0145179719d4f3.zip
cpython-84230a1eb27e2b11a2eb8d0d4d0145179719d4f3.tar.gz
cpython-84230a1eb27e2b11a2eb8d0d4d0145179719d4f3.tar.bz2
Merged revisions 78217-78218 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78217 | mark.dickinson | 2010-02-18 14:27:02 +0000 (Thu, 18 Feb 2010) | 5 lines Issue #7633: Context method in the decimal module (with the exception of the 'canonical' and 'is_canonical' methods) now consistently accept integer arguments wherever a Decimal instance is accepted. Thanks Juan José Conti for the patch. ........ r78218 | mark.dickinson | 2010-02-18 14:45:33 +0000 (Thu, 18 Feb 2010) | 1 line Doctest fixes for decimal.py: add an integer-argument doctest for logical_invert; don't use integer literals with a leading zero. ........
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r--Doc/library/decimal.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index c1c8482..a3325f7 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -896,8 +896,11 @@ In addition to the three supplied contexts, new contexts can be created with the
a large number of methods for doing arithmetic directly in a given context.
In addition, for each of the :class:`Decimal` methods described above (with
the exception of the :meth:`adjusted` and :meth:`as_tuple` methods) there is
- a corresponding :class:`Context` method. For example, ``C.exp(x)`` is
- equivalent to ``x.exp(context=C)``.
+ a corresponding :class:`Context` method. For example, for a :class:`Context`
+ instance ``C`` and :class:`Decimal` instance ``x``, ``C.exp(x)`` is
+ equivalent to ``x.exp(context=C)``. Each :class:`Context` method accepts a
+ Python integer (an instance of :class:`int` or :class:`long`) anywhere that a
+ Decimal instance is accepted.
.. method:: clear_flags()