summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2014-04-14 16:08:21 (GMT)
committerEric V. Smith <eric@trueblade.com>2014-04-14 16:08:21 (GMT)
commit280c458f9ec3b7d5d1aa8e83c02af350a15ede8e (patch)
tree8a44f937b69eaf29d0df4f233ba87d97053f39ea /Misc
parentf33201b6dbb700b6d07b25bfeb63deeaf1446419 (diff)
parent2ea9712ee91e6b6a6c1b10d9c21b219bc4fbe54b (diff)
downloadcpython-280c458f9ec3b7d5d1aa8e83c02af350a15ede8e.zip
cpython-280c458f9ec3b7d5d1aa8e83c02af350a15ede8e.tar.gz
cpython-280c458f9ec3b7d5d1aa8e83c02af350a15ede8e.tar.bz2
Closes 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 4b54859..01ad416 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
- Issue #19995: %c, %o, %x, and %X now raise TypeError on non-integer input.
+- Issue #12546: Allow \x00 to be used as a fill character when using str, int,
+ float, and complex __format__ methods.
+
Library
-------