diff options
author | Mohamed Koubaa <koubaa.m@gmail.com> | 2020-09-06 10:09:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 10:09:51 (GMT) |
commit | 63f102fe079ecb5cb7b921a1cf8bce4077a9d7e2 (patch) | |
tree | 55496c20a4e8da0303a51474ff3b559108683e9f /Misc | |
parent | 5371a464ce88ffc88f3bb95cfd86f355b7d02953 (diff) | |
download | cpython-63f102fe079ecb5cb7b921a1cf8bce4077a9d7e2.zip cpython-63f102fe079ecb5cb7b921a1cf8bce4077a9d7e2.tar.gz cpython-63f102fe079ecb5cb7b921a1cf8bce4077a9d7e2.tar.bz2 |
bpo-1635741: Port _sha1, _sha512, _md5 to multiphase init (GH-21818)
Port the _sha1, _sha512, and _md5 extension modules
to multi-phase initialization API (PEP 489).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-08-10-16-11-32.bpo-1635741.O0d3ym.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-08-10-16-11-32.bpo-1635741.O0d3ym.rst b/Misc/NEWS.d/next/Core and Builtins/2020-08-10-16-11-32.bpo-1635741.O0d3ym.rst new file mode 100644 index 0000000..12af3d0 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-08-10-16-11-32.bpo-1635741.O0d3ym.rst @@ -0,0 +1,2 @@ +Port the :mod:`_sha1`, :mod:`_sha512`, and :mod:`_md5` extension modules
+to multi-phase initialization API (:pep:`489`).
|