From 8204090c0e7cd943a3dbbd70756667f12844183f Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 20 Aug 2016 09:55:07 -0700 Subject: [PATCH] Add 'a' and 'A' format specifiers (cherry picked from commit 53f9e7f65c534c4c8def55727e8e43478d350ec6) --- doc/syntax.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syntax.rst b/doc/syntax.rst index 319951a57ae0a..71267ccadfb22 100644 --- a/doc/syntax.rst +++ b/doc/syntax.rst @@ -80,7 +80,7 @@ The general form of a *standard format specifier* is: sign: "+" | "-" | " " width: `integer` | "{" `arg_id` "}" precision: `integer` | "{" `arg_id` "}" - type: `int_type` | "c" | "e" | "E" | "f" | "F" | "g" | "G" | "p" | "s" + type: `int_type` | "a" | "A" | "c" | "e" | "E" | "f" | "F" | "g" | "G" | "p" | "s" int_type: "b" | "B" | "d" | "n" | "o" | "x" | "X" The *fill* character can be any character other than '{' or '}'. The presence