diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/binascii.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Modules/binascii.c b/Modules/binascii.c index c6da3e0..e428b0d 100644 --- a/Modules/binascii.c +++ b/Modules/binascii.c @@ -965,11 +965,6 @@ static PyObject * binascii_crc_hqx_impl(PyObject *module, Py_buffer *data, unsigned int crc) /*[clinic end generated code: output=2fde213d0f547a98 input=56237755370a951c]*/ { - if (PyErr_WarnEx(PyExc_DeprecationWarning, - "binascii.crc_hqx() is deprecated", 1) < 0) { - return NULL; - } - const unsigned char *bin_data; Py_ssize_t len; |