diff options
author | Victor Stinner <vstinner@python.org> | 2020-11-18 23:19:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 23:19:06 (GMT) |
commit | 6f4635fe20457a7c513050bb117c2f0511cd4e44 (patch) | |
tree | 45f7265f81477cf6edd8921819aa81e6925dc24f /Misc/NEWS.d | |
parent | 829b177436e091025813d9be28c21ca46f246af7 (diff) | |
download | cpython-6f4635fe20457a7c513050bb117c2f0511cd4e44.zip cpython-6f4635fe20457a7c513050bb117c2f0511cd4e44.tar.gz cpython-6f4635fe20457a7c513050bb117c2f0511cd4e44.tar.bz2 |
bpo-1635741: Port _warnings to the multi-phase init (GH-23379)
Port the _warnings extension module to the multi-phase initialization
API (PEP 489).
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-11-18-23-46-31.bpo-1635741.GVOQ-m.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-11-18-23-46-31.bpo-1635741.GVOQ-m.rst b/Misc/NEWS.d/next/Core and Builtins/2020-11-18-23-46-31.bpo-1635741.GVOQ-m.rst new file mode 100644 index 0000000..ae9cc0b --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-11-18-23-46-31.bpo-1635741.GVOQ-m.rst @@ -0,0 +1,2 @@ +Port the ``_warnings`` extension module to the multi-phase initialization +API (:pep:`489`). Patch by Victor Stinner. |