summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-11-17 22:28:25 (GMT)
committerGitHub <noreply@github.com>2020-11-17 22:28:25 (GMT)
commit7f9b25a21ab95f8cf8d663396993766307be475c (patch)
tree08ac32686ed7f5df9ae482af165b178b47dc50f3 /Misc
parent1de61d3923840b29e847d311f0c7d4c5821d98e6 (diff)
downloadcpython-7f9b25a21ab95f8cf8d663396993766307be475c.zip
cpython-7f9b25a21ab95f8cf8d663396993766307be475c.tar.gz
cpython-7f9b25a21ab95f8cf8d663396993766307be475c.tar.bz2
bpo-41713: Port _signal module to multi-phase init (GH-23355)
Port the _signal extension module to the multi-phase initialization API (PEP 489). Co-Authored-By: Mohamed Koubaa <koubaa.m@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-11-17-23-00-27.bpo-41713.-Us0tf.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-11-17-23-00-27.bpo-41713.-Us0tf.rst b/Misc/NEWS.d/next/Library/2020-11-17-23-00-27.bpo-41713.-Us0tf.rst
new file mode 100644
index 0000000..4b297d9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-11-17-23-00-27.bpo-41713.-Us0tf.rst
@@ -0,0 +1,2 @@
+Port the ``_signal`` extension module to the multi-phase initialization API
+(:pep:`489`). Patch by Victor Stinner and Mohamed Koubaa.