From: Georg Brandl Date: Fri, 13 Feb 2009 10:56:50 +0000 (+0000) Subject: #1661108: note that urlsafe encoded string can contain "=". X-Git-Tag: v2.7a1~2038 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9;p=thirdparty%2FPython%2Fcpython.git #1661108: note that urlsafe encoded string can contain "=". --- diff --git a/Doc/library/base64.rst b/Doc/library/base64.rst index 68a941faf74b..084660d66e0b 100644 --- a/Doc/library/base64.rst +++ b/Doc/library/base64.rst @@ -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)