summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-06-09 08:30:57 (GMT)
committerGitHub <noreply@github.com>2023-06-09 08:30:57 (GMT)
commit3e525d22128cf040b3fd164f52cc6ae20ca58455 (patch)
tree2f13c7b5eaf259a395c3600e2b8a920972c9c2d8 /Misc/NEWS.d/next
parenta5f23d411062f9f29f8a7d7ddefe60d5d8e17d2e (diff)
downloadcpython-3e525d22128cf040b3fd164f52cc6ae20ca58455.zip
cpython-3e525d22128cf040b3fd164f52cc6ae20ca58455.tar.gz
cpython-3e525d22128cf040b3fd164f52cc6ae20ca58455.tar.bz2
gh-105396: Deprecate PyImport_ImportModuleNoBlock() function (#105397)
Deprecate the PyImport_ImportModuleNoBlock() function which is just an alias to PyImport_ImportModule() since Python 3.3.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/C API/2023-06-06-17-43-28.gh-issue-105396.FQJG5B.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-06-06-17-43-28.gh-issue-105396.FQJG5B.rst b/Misc/NEWS.d/next/C API/2023-06-06-17-43-28.gh-issue-105396.FQJG5B.rst
new file mode 100644
index 0000000..cf82f62
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2023-06-06-17-43-28.gh-issue-105396.FQJG5B.rst
@@ -0,0 +1,3 @@
+Deprecate the :c:func:`PyImport_ImportModuleNoBlock` function which is just
+an alias to :c:func:`PyImport_ImportModule` since Python 3.3. Patch by
+Victor Stinner.