summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-12-30 07:21:14 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-12-30 07:21:14 (GMT)
commitbd9761102eea50b072a9d8536eebe5be4675fff6 (patch)
tree720ca6c6a7df872001edfe2211d332d92dc80926 /Doc
parent5723d225f8017f302d1791ce414144e864fbdf56 (diff)
downloadcpython-bd9761102eea50b072a9d8536eebe5be4675fff6.zip
cpython-bd9761102eea50b072a9d8536eebe5be4675fff6.tar.gz
cpython-bd9761102eea50b072a9d8536eebe5be4675fff6.tar.bz2
Merged revisions 87573 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87573 | senthil.kumaran | 2010-12-30 15:07:58 +0800 (Thu, 30 Dec 2010) | 3 lines Fix Issue10793 - hashlib documentation issue on return type of digest ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/hashlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 539c51d..b73d753 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -113,7 +113,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.