diff options
author | Eric V. Smith <eric@trueblade.com> | 2014-04-14 16:08:21 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2014-04-14 16:08:21 (GMT) |
commit | 280c458f9ec3b7d5d1aa8e83c02af350a15ede8e (patch) | |
tree | 8a44f937b69eaf29d0df4f233ba87d97053f39ea /Misc | |
parent | f33201b6dbb700b6d07b25bfeb63deeaf1446419 (diff) | |
parent | 2ea9712ee91e6b6a6c1b10d9c21b219bc4fbe54b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 ------- |