summaryrefslogtreecommitdiffstats
path: root/Doc/library/base64.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-13 10:56:50 (GMT)
committerGeorg Brandl <georg@python.org>2009-02-13 10:56:50 (GMT)
commit5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9 (patch)
tree97f1c42319141fa6fafdca2f37b237bb2fc1192d /Doc/library/base64.rst
parent9834dd72bc9d73bc54295af6f36b8d76ad8ba245 (diff)
downloadcpython-5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9.zip
cpython-5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9.tar.gz
cpython-5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9.tar.bz2
#1661108: note that urlsafe encoded string can contain "=".
Diffstat (limited to 'Doc/library/base64.rst')
-rw-r--r--Doc/library/base64.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/base64.rst b/Doc/library/base64.rst
index 68a941f..084660d 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)