diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-02-17 18:57:06 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-02-17 18:57:06 (GMT) |
commit | f927f14edab27b128b1962314c1cf7c10be73ac5 (patch) | |
tree | 5da116ced261c81531357d04183871b2a64dacbc /Doc/lib | |
parent | 1fb1400d0819b2bebf17bf5810fa3f05af7235b4 (diff) | |
download | cpython-f927f14edab27b128b1962314c1cf7c10be73ac5.zip cpython-f927f14edab27b128b1962314c1cf7c10be73ac5.tar.gz cpython-f927f14edab27b128b1962314c1cf7c10be73ac5.tar.bz2 |
Fix SF bug #687655, String formatting conversions misleading
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 5f4a154..f6b6369 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -800,7 +800,7 @@ The conversion flag characters are: \begin{tableii}{c|l}{character}{Flag}{Meaning} \lineii{\#}{The value conversion will use the ``alternate form'' (where defined below).} - \lineii{0}{The conversion will be zero padded.} + \lineii{0}{The conversion will be zero padded for numeric values.} \lineii{-}{The converted value is left adjusted (overrides the \character{0} conversion if both are given).} \lineii{{~}}{(a space) A blank should be left before a positive number |