]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#1661108: note that urlsafe encoded string can contain "=".
authorGeorg Brandl <georg@python.org>
Fri, 13 Feb 2009 10:56:50 +0000 (10:56 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 13 Feb 2009 10:56:50 +0000 (10:56 +0000)
Doc/library/base64.rst

index 68a941faf74b09681950b9561356310851ea55b4..084660d66e0b10799f296b83c8df8a99dd587af1 100644 (file)
@@ -63,7 +63,8 @@ The modern interface, which was introduced in Python 2.4, provides:
 .. 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)