[Python-checkins] r56801 - python/branches/decimal-branch/Lib/decimal.py

facundo.batista python-checkins at python.org
Tue Aug 7 19:54:38 CEST 2007


Author: facundo.batista
Date: Tue Aug  7 19:54:38 2007
New Revision: 56801

Modified:
   python/branches/decimal-branch/Lib/decimal.py
Log:

Three minor English corrections (thanks Mark Dickinson).


Modified: python/branches/decimal-branch/Lib/decimal.py
==============================================================================
--- python/branches/decimal-branch/Lib/decimal.py	(original)
+++ python/branches/decimal-branch/Lib/decimal.py	Tue Aug  7 19:54:38 2007
@@ -2304,7 +2304,7 @@
         """Returns the same Decimal object.
 
         As we do not have different encodings for the same number, the
-        received object already is in it's canonical form.
+        received object already is in its canonical form.
         """
         return self
 
@@ -3171,7 +3171,7 @@
         """Returns the same Decimal object.
 
         As we do not have different encodings for the same number, the
-        received object already is in it's canonical form.
+        received object already is in its canonical form.
 
         >>> ExtendedContext.canonical(Decimal('2.50'))
         Decimal("2.50")
@@ -3275,7 +3275,7 @@
         return a.copy_negate(context=self)
 
     def copy_sign(self, a, b):
-        """Copys the second operand's sign to the first one.
+        """Copies the second operand's sign to the first one.
 
         In detail, it returns a copy of the first operand with the sign
         equal to the sign of the second operand.


More information about the Python-checkins mailing list