summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-06 16:23:13 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-01-06 16:23:13 +0000
commit5d463bb22a225a39856f7e5a1f599c8320efc15d (patch)
tree0ef032343acbee447e5970d6dce7e483f67f4021 /Lib/decimal.py
parent90fffccf7aa45f70ea4e22ff38764a74873b1233 (diff)
downloadcpython-5d463bb22a225a39856f7e5a1f599c8320efc15d.tar.gz
Merged revisions 77326 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77326 | mark.dickinson | 2010-01-06 16:22:15 +0000 (Wed, 06 Jan 2010) | 9 lines Merged revisions 77324 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77324 | mark.dickinson | 2010-01-06 16:20:22 +0000 (Wed, 06 Jan 2010) | 2 lines Add missing docstring for Context.divmod. Thanks Juan José Conti. ........ ................
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index 3450066d4b..5638bd7086 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -4132,6 +4132,13 @@ class Context(object):
return a.__floordiv__(b, context=self)
def divmod(self, a, b):
+ """Return (a // b, a % b)
+
+ >>> ExtendedContext.divmod(Decimal(8), Decimal(3))
+ (Decimal('2'), Decimal('2'))
+ >>> ExtendedContext.divmod(Decimal(8), Decimal(4))
+ (Decimal('2'), Decimal('0'))
+ """
return a.__divmod__(b, context=self)
def exp(self, a):