[Python-checkins] r69576 - python/trunk/Doc/library/base64.rst

georg.brandl python-checkins at python.org
Fri Feb 13 11:56:50 CET 2009


Author: georg.brandl
Date: Fri Feb 13 11:56:50 2009
New Revision: 69576

Log:
#1661108: note that urlsafe encoded string can contain "=".

Modified:
   python/trunk/Doc/library/base64.rst

Modified: python/trunk/Doc/library/base64.rst
==============================================================================
--- python/trunk/Doc/library/base64.rst	(original)
+++ python/trunk/Doc/library/base64.rst	Fri Feb 13 11:56:50 2009
@@ -63,7 +63,8 @@
 .. function:: urlsafe_b64encode(s)
 
    Encode string *s* using a URL-safe alphabet, which substitutes ``-`` instead of
-   ``+`` and ``_`` instead of ``/`` in the standard Base64 alphabet.
+   ``+`` and ``_`` instead of ``/`` in the standard Base64 alphabet.  The result
+   can still contain ``=``.
 
 
 .. function:: urlsafe_b64decode(s)


More information about the Python-checkins mailing list