diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-12-30 07:07:58 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-12-30 07:07:58 (GMT) |
commit | 627284c67fcc812c75803d47ed06dd115f813b50 (patch) | |
tree | ae52c3bff62cc9bb2050cd5c0f154b9a2084863d /Doc | |
parent | ef1a8b62bc04b60c827a0f0745cbc84e534dcf19 (diff) | |
download | cpython-627284c67fcc812c75803d47ed06dd115f813b50.zip cpython-627284c67fcc812c75803d47ed06dd115f813b50.tar.gz cpython-627284c67fcc812c75803d47ed06dd115f813b50.tar.bz2 |
Fix Issue10793 - hashlib documentation issue on return type of digest
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/hashlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index fa95821..6810b4e 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. |