diff options
author | Georg Brandl <georg@python.org> | 2009-02-13 10:56:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-13 10:56:50 (GMT) |
commit | 5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9 (patch) | |
tree | 97f1c42319141fa6fafdca2f37b237bb2fc1192d | |
parent | 9834dd72bc9d73bc54295af6f36b8d76ad8ba245 (diff) | |
download | cpython-5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9.zip cpython-5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9.tar.gz cpython-5ccf2ae21cd2b12c034071e01c8ad78b57a1d6c9.tar.bz2 |
#1661108: note that urlsafe encoded string can contain "=".
-rw-r--r-- | Doc/library/base64.rst | 3 |
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) |