diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-13 11:15:31 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-13 11:15:31 (GMT) |
commit | 507ac3a5910a5404013883ce45ad2f9cf0509b0e (patch) | |
tree | ce07a2f92b935600c89f39e874f9c704844457b6 /Misc | |
parent | 590cebe391fb2e199afe9b20ff67e360116a1266 (diff) | |
parent | c9362cf86ae302e89207dff7206b1c6bba413e33 (diff) | |
download | cpython-507ac3a5910a5404013883ce45ad2f9cf0509b0e.zip cpython-507ac3a5910a5404013883ce45ad2f9cf0509b0e.tar.gz cpython-507ac3a5910a5404013883ce45ad2f9cf0509b0e.tar.bz2 |
(Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if
"%c" argument is not in range [0; 255].
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: 2014-01-05 Core and Builtins ----------------- +- Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" + argument is not in range [0; 255]. + - Issue #19787: PyThread_set_key_value() now always set the value. In Python 3.3, the function did nothing if the key already exists (if the current value is a non-NULL pointer). |