summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2014-04-14 15:55:10 (GMT)
committerEric V. Smith <eric@trueblade.com>2014-04-14 15:55:10 (GMT)
commit2ea9712ee91e6b6a6c1b10d9c21b219bc4fbe54b (patch)
tree236cd53e05426767821a0473f31097e54fdf2032 /Misc
parent70d92a96ab47e0b8b9cb78d437b3761296f815ed (diff)
downloadcpython-2ea9712ee91e6b6a6c1b10d9c21b219bc4fbe54b.zip
cpython-2ea9712ee91e6b6a6c1b10d9c21b219bc4fbe54b.tar.gz
cpython-2ea9712ee91e6b6a6c1b10d9c21b219bc4fbe54b.tar.bz2
Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5bab493..240c6cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
- Issue #20637: Key-sharing now also works for instance dictionaries of
subclasses. Patch by Peter Ingebretson.
+- Issue #12546: Allow \x00 to be used as a fill character when using str, int,
+ float, and complex __format__ methods.
+
Library
-------