summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2005-03-01 03:12:26 +0000
committerBrett Cannon <bcannon@gmail.com>2005-03-01 03:12:26 +0000
commit232c5d47e6596535f8b0056e4aca06f40e15a37e (patch)
tree599903337adbb69b919500f0b4f440c5a4125dc5 /Lib/decimal.py
parent4ad7fac59044c7f753dd756de507ec31f02efe28 (diff)
downloadcpython-232c5d47e6596535f8b0056e4aca06f40e15a37e.tar.gz
Fix small grammatical error in a docstring.
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 90e2dccefa..7f71b83559 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -1414,7 +1414,7 @@ class Decimal(object):
return float(str(self))
def __int__(self):
- """Converts self to a int, truncating if necessary."""
+ """Converts self to an int, truncating if necessary."""
if self._is_special:
if self._isnan():
context = getcontext()