summaryrefslogtreecommitdiffstats
path: root/Modules/sha512module.c
diff options
context:
space:
mode:
authorSrinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <srinivasreddy@users.noreply.github.com>2018-10-19 17:42:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-10-19 17:42:53 (GMT)
commitf192aeb95a139ede74d69e39c046c498ff288a37 (patch)
tree7f576552c7cbf0e53c07eb260911ff19b936967f /Modules/sha512module.c
parentdd13c88b5371e13fc16b84e2f9b8715d917de269 (diff)
downloadcpython-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/sha512module.c')
-rw-r--r--Modules/sha512module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index d8c846a..e070e43 100644
--- a/Modules/sha512module.c
+++ b/Modules/sha512module.c
@@ -493,12 +493,12 @@ SHA512Type_copy_impl(SHAobject *self)
/*[clinic input]
SHA512Type.digest
-Return the digest value as a string of binary data.
+Return the digest value as a bytes object.
[clinic start generated code]*/
static PyObject *
SHA512Type_digest_impl(SHAobject *self)
-/*[clinic end generated code: output=1080bbeeef7dde1b input=60c2cede9e023018]*/
+/*[clinic end generated code: output=1080bbeeef7dde1b input=f6470dd359071f4b]*/
{
unsigned char digest[SHA_DIGESTSIZE];
SHAobject temp;