[Python-checkins] python/dist/src/Lib decimal.py,1.33,1.34
bcannon at users.sourceforge.net
bcannon at users.sourceforge.net
Tue Mar 1 04:12:29 CET 2005
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23426/Lib
Modified Files:
decimal.py
Log Message:
Fix small grammatical error in a docstring.
Index: decimal.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/decimal.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- decimal.py 6 Feb 2005 06:57:07 -0000 1.33
+++ decimal.py 1 Mar 2005 03:12:26 -0000 1.34
@@ -1414,7 +1414,7 @@
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()
More information about the Python-checkins
mailing list