[Python-checkins] r51692 - python/branches/release25-maint/Doc/lib/libhashlib.tex

neal.norwitz python-checkins at python.org
Sun Sep 3 02:04:27 CEST 2006


Author: neal.norwitz
Date: Sun Sep  3 02:04:26 2006
New Revision: 51692

Modified:
   python/branches/release25-maint/Doc/lib/libhashlib.tex
Log:
Backport 51663:
  Doc fix: hashlib objects don't always return a digest of 16 bytes.


Modified: python/branches/release25-maint/Doc/lib/libhashlib.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libhashlib.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libhashlib.tex	Sun Sep  3 02:04:26 2006
@@ -86,8 +86,8 @@
 
 \begin{methoddesc}[hash]{digest}{}
 Return the digest of the strings passed to the \method{update()}
-method so far.  This is a 16-byte string which may contain
-non-\ASCII{} characters, including null bytes.
+method so far.  This is a string of \member{digest_size} bytes which may
+contain non-\ASCII{} characters, including null bytes.
 \end{methoddesc}
 
 \begin{methoddesc}[hash]{hexdigest}{}


More information about the Python-checkins mailing list