bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation

This commit is contained in:
Georg Brandl 2005-08-22 19:35:18 +00:00
parent 7208af47f8
commit f33d01d304
3 changed files with 3 additions and 3 deletions

View file

@ -2755,7 +2755,7 @@ class Context(object):
return a.sqrt(context=self)
def subtract(self, a, b):
"""Return the sum of the two operands.
"""Return the difference between the two operands.
>>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07'))
Decimal("0.23")