]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 87573 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Thu, 30 Dec 2010 07:21:14 +0000 (07:21 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Thu, 30 Dec 2010 07:21:14 +0000 (07:21 +0000)
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
........

Doc/library/hashlib.rst

index 539c51dffd07e7880cc4195a3dcb5849582fa301..b73d7536a5729294188548b84cc64264e5e86501 100644 (file)
@@ -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.