Message332749
| 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.
... |
|