diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-11 16:49:20 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-11 16:49:20 (GMT) |
commit | 1c164a6f85865ab6c84d4bfb6bfbf1dde6169603 (patch) | |
tree | 46456faa22e9463eadb03694242dcf130ea5698d | |
parent | 177e8530cbf5ece4264d48da3c11a7e1fc45dcb4 (diff) | |
download | cpython-1c164a6f85865ab6c84d4bfb6bfbf1dde6169603.zip cpython-1c164a6f85865ab6c84d4bfb6bfbf1dde6169603.tar.gz cpython-1c164a6f85865ab6c84d4bfb6bfbf1dde6169603.tar.bz2 |
Fix typo in docstring.
-rw-r--r-- | Lib/decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index 0e6a966..4d9dd86 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". |