Add "p" to supported types.

This commit is contained in:
Victor Zverovich 2012-12-10 13:30:25 -08:00
parent d599e3b262
commit 6caa750a00

View File

@ -61,7 +61,7 @@ The grammar for a replacement field is as follows::
format_spec: ["+"]["0"][width]["." precision][type]
width: integer
precision: integer
type: "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "o" | "s" | "x" | "X"
type: "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "o" | "p" | "s" | "x" | "X"
Motivation
----------