[Python-checkins] r61125 - python/trunk/Lib/decimal.py

mark.dickinson python-checkins at python.org
Fri Feb 29 04:29:17 CET 2008


Author: mark.dickinson
Date: Fri Feb 29 04:29:17 2008
New Revision: 61125

Modified:
   python/trunk/Lib/decimal.py
Log:
Fix docstring typo.


Modified: python/trunk/Lib/decimal.py
==============================================================================
--- python/trunk/Lib/decimal.py	(original)
+++ python/trunk/Lib/decimal.py	Fri Feb 29 04:29:17 2008
@@ -3456,7 +3456,7 @@
 
     # PEP 3101 support.  See also _parse_format_specifier and _format_align
     def __format__(self, specifier, context=None):
-        """Format a Decimal class according to the given specifier.
+        """Format a Decimal instance according to the given specifier.
 
         The specifier should be a standard format specifier, with the
         form described in PEP 3101.  Formatting types 'e', 'E', 'f',


More information about the Python-checkins mailing list