Fix Issue10793 - hashlib documentation issue on return type of digest

This commit is contained in:
Senthil Kumaran 2010-12-30 07:07:58 +00:00
parent ef1a8b62bc
commit 627284c67f
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ A hash object has the following methods:
.. method:: hash.digest() .. method:: hash.digest()
Return the digest of the data passed to the :meth:`update` method so far. 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. the whole range from 0 to 255.