]> granicus.if.org Git - python/commitdiff
#9780: both { and } are not valid fill characters.
authorGeorg Brandl <georg@python.org>
Mon, 6 Sep 2010 06:49:07 +0000 (06:49 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 6 Sep 2010 06:49:07 +0000 (06:49 +0000)
Doc/library/string.rst

index cabb6f3815e09507aabc8db96357db7026ee9c34..f926924b1b720a66014763de43884fe6da473237 100644 (file)
@@ -299,11 +299,11 @@ The general form of a *standard format specifier* is:
    precision: `integer`
    type: "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
 
-The *fill* character can be any character other than '}' (which signifies the
-end of the field).  The presence of a fill character is signaled by the *next*
-character, which must be one of the alignment options. If the second character
-of *format_spec* is not a valid alignment option, then it is assumed that both
-the fill character and the alignment option are absent.
+The *fill* character can be any character other than '{' or '}'.  The presence
+of a fill character is signaled by the character following it, which must be
+one of the alignment options.  If the second character of *format_spec* is not
+a valid alignment option, then it is assumed that both the fill character and
+the alignment option are absent.
 
 The meaning of the various alignment options is as follows: