summaryrefslogtreecommitdiff
path: root/Modules/sha1module.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-19 16:20:56 -0700
committerVictor Stinner <vstinner@redhat.com>2018-10-20 01:20:56 +0200
commit23efe77acf0dce513d7b7cab5523c061bb006b60 (patch)
tree95daf0fde5a62d0e4e7c6b008a30f1803acdf606 /Modules/sha1module.c
parent4ec9f64e07c8f397ad6699f8b99843846c219588 (diff)
downloadcpython-git-23efe77acf0dce513d7b7cab5523c061bb006b60.tar.gz
bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873) (GH-9971)
(cherry picked from commit f192aeb95a139ede74d69e39c046c498ff288a37) Co-authored-by: Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <srinivasreddy@users.noreply.github.com>
Diffstat (limited to 'Modules/sha1module.c')
-rw-r--r--Modules/sha1module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sha1module.c b/Modules/sha1module.c
index 358cd1e7f9..998ebd437d 100644
--- a/Modules/sha1module.c
+++ b/Modules/sha1module.c
@@ -338,12 +338,12 @@ SHA1Type_copy_impl(SHA1object *self)
/*[clinic input]
SHA1Type.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 *
SHA1Type_digest_impl(SHA1object *self)
-/*[clinic end generated code: output=2f05302a7aa2b5cb input=205d47e1927fd009]*/
+/*[clinic end generated code: output=2f05302a7aa2b5cb input=13824b35407444bd]*/
{
unsigned char digest[SHA1_DIGESTSIZE];
struct sha1_state temp;