From 2d14b54016544529604e19cf94237936b96a4804 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Fri, 17 Apr 2009 18:34:48 +0000 Subject: [PATCH] Updated to include the empty type ''. See Issue #5782. --- pep-0378.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0378.txt b/pep-0378.txt index fb01d86f3..6cfcfebb5 100644 --- a/pep-0378.txt +++ b/pep-0378.txt @@ -75,7 +75,7 @@ and decimal point:: format(1234.5, "08,.1f") --> '01,234.5' The ',' option is defined as shown above for types 'd', 'e', -'f', 'g', 'E', 'G', '%' and 'F'. To allow future extensions, it is +'f', 'g', 'E', 'G', '%', 'F' and ''. To allow future extensions, it is undefined for other types: binary, octal, hex, character, etc.