summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-13 02:22:00 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-13 02:22:00 (GMT)
commitcd0cb8ccd376186f08fd3ee2be0085f45f66b3d3 (patch)
tree1c376ce9b0303a145e93884229a96364c9088eba /Doc
parent24bd028092d0d8340980ff8d720d072b6288f355 (diff)
downloadcpython-cd0cb8ccd376186f08fd3ee2be0085f45f66b3d3.zip
cpython-cd0cb8ccd376186f08fd3ee2be0085f45f66b3d3.tar.gz
cpython-cd0cb8ccd376186f08fd3ee2be0085f45f66b3d3.tar.bz2
Close #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). _testcapi.run_in_subinterp() now correctly sets the new Python thread state of the current thread when a subinterpreter is created.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 5d360c4..8fe906b 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -1068,3 +1068,8 @@ that may require changes to your code.
working directory will also now have an absolute path, including when using
``-m`` with the interpreter (this does not influence when the path to a file
is specified on the command-line).
+
+* (C API) :c:func:`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).
+