summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-01-30 08:56:40 (GMT)
committerGitHub <noreply@github.com>2020-01-30 08:56:40 (GMT)
commitc38fd0df2b4cbc1cc906d8dfe23f63b67cd6965f (patch)
treebf4258c96731f8c0e1fbc525abd27514308300b2 /Doc
parent2bf127d97bd1d60ead7c20d429b0c61ef61fc554 (diff)
downloadcpython-c38fd0df2b4cbc1cc906d8dfe23f63b67cd6965f.zip
cpython-c38fd0df2b4cbc1cc906d8dfe23f63b67cd6965f.tar.gz
cpython-c38fd0df2b4cbc1cc906d8dfe23f63b67cd6965f.tar.bz2
bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)
The binascii.crc_hqx() function is no longer deprecated.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/binascii.rst2
-rw-r--r--Doc/whatsnew/3.9.rst1
2 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst
index aa2a270..2c0c1bc 100644
--- a/Doc/library/binascii.rst
+++ b/Doc/library/binascii.rst
@@ -132,8 +132,6 @@ The :mod:`binascii` module defines the following functions:
*x*:sup:`16` + *x*:sup:`12` + *x*:sup:`5` + 1, often represented as
0x1021. This CRC is used in the binhex4 format.
- .. deprecated:: 3.9
-
.. function:: crc32(data[, value])
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index a4c4266..c8f4077 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -379,7 +379,6 @@ Deprecated
* :func:`~binascii.b2a_hqx`, :func:`~binascii.a2b_hqx`
* :func:`~binascii.rlecode_hqx`, :func:`~binascii.rledecode_hqx`
- * :func:`~binascii.crc_hqx`
(Contributed by Victor Stinner in :issue:`39353`.)