summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-12-08 14:42:42 (GMT)
committerGitHub <noreply@github.com>2020-12-08 14:42:42 (GMT)
commit0f91f586ae9b76c3bb44559bd8cd473b1b8de5ff (patch)
tree9772c6ff798edc8333160b9d587b5a0a9691391a /Doc
parentb6d98c10fff6f320f8fdf595c3f9a05d8be4e31d (diff)
downloadcpython-0f91f586ae9b76c3bb44559bd8cd473b1b8de5ff.zip
cpython-0f91f586ae9b76c3bb44559bd8cd473b1b8de5ff.tar.gz
cpython-0f91f586ae9b76c3bb44559bd8cd473b1b8de5ff.tar.bz2
bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)
Removed PyModule_GetWarningsModule() which is useless due to the _warnings module was converted to a builtin module in 2.6.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.10.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index a5cb4e3..23e28aa 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -480,6 +480,11 @@ Removed
into their code.
(Contributed by Dong-hee Na and Terry J. Reedy in :issue:`42299`.)
+* Removed the :c:func:`PyModule_GetWarningsModule` function that was useless
+ now due to the _warnings module was converted to a builtin module in 2.6.
+ (Contributed by Hai Shi in :issue:`42599`.)
+
+
Porting to Python 3.10
======================