Commit 6d72b0e1 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Clarify docstring

parent 0f87183c
...@@ -308,7 +308,7 @@ def decode(input, output): ...@@ -308,7 +308,7 @@ def decode(input, output):
def encodestring(s): def encodestring(s):
"""Encode a string.""" """Encode a string into multiple lines of base-64 data."""
pieces = [] pieces = []
for i in range(0, len(s), MAXBINSIZE): for i in range(0, len(s), MAXBINSIZE):
chunk = s[i : i + MAXBINSIZE] chunk = s[i : i + MAXBINSIZE]
......
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