diff options
author | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <srinivasreddy@users.noreply.github.com> | 2018-10-19 17:42:53 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-19 17:42:53 (GMT) |
commit | f192aeb95a139ede74d69e39c046c498ff288a37 (patch) | |
tree | 7f576552c7cbf0e53c07eb260911ff19b936967f /Modules/_hashopenssl.c | |
parent | dd13c88b5371e13fc16b84e2f9b8715d917de269 (diff) | |
download | cpython-f192aeb95a139ede74d69e39c046c498ff288a37.zip cpython-f192aeb95a139ede74d69e39c046c498ff288a37.tar.gz cpython-f192aeb95a139ede74d69e39c046c498ff288a37.tar.bz2 |
bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873)
Diffstat (limited to 'Modules/_hashopenssl.c')
-rw-r--r-- | Modules/_hashopenssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index 7121224..42ea997 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -187,7 +187,7 @@ EVP_copy(EVPobject *self, PyObject *unused) } PyDoc_STRVAR(EVP_digest__doc__, -"Return the digest value as a string of binary data."); +"Return the digest value as a bytes object."); static PyObject * EVP_digest(EVPobject *self, PyObject *unused) |