summaryrefslogtreecommitdiffstats
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2008-02-10 15:19:58 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2008-02-10 15:19:58 (GMT)
commit3a94ee05f77d0200cfb7988d02f3fdf292932a94 (patch)
treeb461b3b6f31d1da990b65f2b633f06dfc45134c3 /Lib/decimal.py
parentdd47aaebe8d06e45b24094f0a76d3f2289d50821 (diff)
downloadcpython-3a94ee05f77d0200cfb7988d02f3fdf292932a94.zip
cpython-3a94ee05f77d0200cfb7988d02f3fdf292932a94.tar.gz
cpython-3a94ee05f77d0200cfb7988d02f3fdf292932a94.tar.bz2
Typos in decimal comment and documentation
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index 8034039..4f23d33 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -801,7 +801,7 @@ class Decimal(object):
# != comparisons involving a NaN always return True
# <, >, <= and >= comparisons involving a (quiet or signaling)
# NaN signal InvalidOperation, and return False if the
- # InvalidOperation is trapped.
+ # InvalidOperation is not trapped.
#
# This behavior is designed to conform as closely as possible to
# that specified by IEEE 754.