This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients georg.brandl, larry, loewis, nadeem.vawda, python-dev, serhiy.storchaka, taleinat, vstinner
Date 2018-12-30.09:51:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546163462.59.0.0647060099546.issue20182@roundup.psfhosted.org>
In-reply-to
Content
PR 9213 added a compiler warning:

In file included from /home/serhiy/py/cpython/Modules/_hashopenssl.c:69:0:
/home/serhiy/py/cpython/Modules/clinic/_hashopenssl.c.h:90:1: warning: ‘EVP_tp_init’ defined but not used [-Wunused-function]
 EVP_tp_init(PyObject *self, PyObject *args, PyObject *kwargs)
 ^~~~~~~~~~~

help(_hashlib.HASH) shows now the signature of the constructor of the object. But a hash object can not be created using it.

class HASH(builtins.object)
 |  HASH(name, string=b'')
 |  
 |  A hash is an object used to calculate a checksum of a string of information.
...
History
Date User Action Args
2018-12-30 09:51:04serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, georg.brandl, vstinner, taleinat, larry, nadeem.vawda, python-dev
2018-12-30 09:51:02serhiy.storchakasetmessageid: <1546163462.59.0.0647060099546.issue20182@roundup.psfhosted.org>
2018-12-30 09:51:02serhiy.storchakalinkissue20182 messages
2018-12-30 09:51:02serhiy.storchakacreate