diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-02-29 03:29:17 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-02-29 03:29:17 (GMT) |
commit | f4da77765f8581e31620e9f49c68028e57b0ae85 (patch) | |
tree | 23da54932a89b13dbd6ed5849471609c7df75527 /Lib | |
parent | 08ff6822cc64497a27aba9d84b3a51b706f01221 (diff) | |
download | cpython-f4da77765f8581e31620e9f49c68028e57b0ae85.zip cpython-f4da77765f8581e31620e9f49c68028e57b0ae85.tar.gz cpython-f4da77765f8581e31620e9f49c68028e57b0ae85.tar.bz2 |
Fix docstring typo.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index d8abf55..5d25012 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -3456,7 +3456,7 @@ class Decimal(object): # 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', |