diff options
Diffstat (limited to 'Doc/library/base64.rst')
-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 48d24db..ef9c02a 100644 --- a/Doc/library/base64.rst +++ b/Doc/library/base64.rst @@ -62,7 +62,8 @@ The modern interface 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) |