From 6caa750a001dd81fd2d6d0685abfe828eed1db1d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 10 Dec 2012 13:30:25 -0800 Subject: [PATCH] Add "p" to supported types. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d034f31f..1d8df735 100644 --- a/README.rst +++ b/README.rst @@ -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 ----------