diff options
author | Yury Selivanov <yury@magic.io> | 2018-09-21 19:33:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 19:33:56 (GMT) |
commit | 2ec872b31e25cee1f983fe07991fb53f3fd1cbac (patch) | |
tree | ee3b5067dc9125be38d3a0ef0e5517a196f334aa /Doc/whatsnew/3.7.rst | |
parent | b46ad5431d2643f61e929c1ffec48766b2fafd75 (diff) | |
download | cpython-2ec872b31e25cee1f983fe07991fb53f3fd1cbac.zip cpython-2ec872b31e25cee1f983fe07991fb53f3fd1cbac.tar.gz cpython-2ec872b31e25cee1f983fe07991fb53f3fd1cbac.tar.bz2 |
bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index f53a026..a2c5c28 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -2494,3 +2494,7 @@ versions, it respected an ill-defined subset of those environment variables, while in Python 3.7.0 it didn't read any of them due to :issue:`34247`). If this behavior is unwanted, set :c:data:`Py_IgnoreEnvironmentFlag` to 1 before calling :c:func:`Py_Initialize`. + +In 3.7.1 the C API for Context Variables +:ref:`was updated <contextvarsobjects_pointertype_change>` to use +:c:type:`PyObject` pointers. See also :issue:`34762`. |