From: Mark Dickinson Date: Fri, 11 Jun 2010 16:49:20 +0000 (+0000) Subject: Fix typo in docstring. X-Git-Tag: v3.2a1~572 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c164a6f85865ab6c84d4bfb6bfbf1dde6169603;p=thirdparty%2FPython%2Fcpython.git Fix typo in docstring. --- diff --git a/Lib/decimal.py b/Lib/decimal.py index 0e6a966d0fd5..4d9dd86530a4 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -5862,7 +5862,7 @@ def _convert_other(other, raiseit=False, allow_float=False): def _convert_for_comparison(self, other, equality_op=False): """Given a Decimal instance self and a Python object other, return - an pair (s, o) of Decimal instances such that "s op o" is + a pair (s, o) of Decimal instances such that "s op o" is equivalent to "self op other" for any of the 6 comparison operators "op".