summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-13 11:15:31 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-13 11:15:31 (GMT)
commit507ac3a5910a5404013883ce45ad2f9cf0509b0e (patch)
treece07a2f92b935600c89f39e874f9c704844457b6 /Misc
parent590cebe391fb2e199afe9b20ff67e360116a1266 (diff)
parentc9362cf86ae302e89207dff7206b1c6bba413e33 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eca89cc..f99a0d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).