From: Senthil Kumaran Date: Thu, 30 Dec 2010 07:07:58 +0000 (+0000) Subject: Fix Issue10793 - hashlib documentation issue on return type of digest X-Git-Tag: v3.2rc1~282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=627284c67fcc812c75803d47ed06dd115f813b50;p=thirdparty%2FPython%2Fcpython.git Fix Issue10793 - hashlib documentation issue on return type of digest --- diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index fa9582119b10..6810b4ec4f22 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -135,7 +135,7 @@ A hash object has the following methods: .. method:: hash.digest() Return the digest of the data passed to the :meth:`update` method so far. - This is a bytes array of size :attr:`digest_size` which may contain bytes in + This is a bytes object of size :attr:`digest_size` which may contain bytes in the whole range from 0 to 255.