diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-13 18:15:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 18:15:33 +0100 |
commit | be79373a78c0d75fc715ab64253c9b757987a848 (patch) | |
tree | 9fba5caff3547b80fbfd2b468339458e7d5d0037 /Doc/whatsnew | |
parent | ff4584caca04cb3da0dbd5b1e9bf67e40adf5312 (diff) | |
download | cpython-git-be79373a78c0d75fc715ab64253c9b757987a848.tar.gz |
bpo-39947: Add PyInterpreterState_Get() function (GH-18979)
* Rename _PyInterpreterState_Get() to PyInterpreterState_Get() and
move it the limited C API.
* Add _PyInterpreterState_Get() alias to PyInterpreterState_Get() for
backward compatibility with Python 3.8.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 0b61fb8f0d..4373e37f55 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -406,6 +406,8 @@ Optimizations Build and C API Changes ======================= +* New :c:func:`PyInterpreterState_Get` function. + * Add ``--with-platlibdir`` option to the ``configure`` script: name of the platform-specific library directory, stored in the new :attr:`sys.platlibdir` attribute. See :attr:`sys.platlibdir` attribute for more information. |