Kaydet (Commit) 38d54f78 authored tarafından Georg Brandl's avatar Georg Brandl

#4975: fix bytes/str issue.

üst e17d5860
...@@ -154,7 +154,7 @@ An example usage of the module: ...@@ -154,7 +154,7 @@ An example usage of the module:
>>> import base64 >>> import base64
>>> encoded = base64.b64encode('data to be encoded') >>> encoded = base64.b64encode('data to be encoded')
>>> encoded >>> encoded
'ZGF0YSB0byBiZSBlbmNvZGVk' b'ZGF0YSB0byBiZSBlbmNvZGVk'
>>> data = base64.b64decode(encoded) >>> data = base64.b64decode(encoded)
>>> data >>> data
'data to be encoded' 'data to be encoded'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment