summaryrefslogtreecommitdiffstats
path: root/Lib/base64.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-10-27 17:06:16 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-10-27 17:06:16 (GMT)
commit6d72b0e1f8c6e096aab46aa53d7081df4e3d8153 (patch)
tree101c1ab2333495038effdb59799828319036a5ce /Lib/base64.py
parent0f87183cf58374f04d12d46c7b885b4a3eaec177 (diff)
downloadcpython-6d72b0e1f8c6e096aab46aa53d7081df4e3d8153.zip
cpython-6d72b0e1f8c6e096aab46aa53d7081df4e3d8153.tar.gz
cpython-6d72b0e1f8c6e096aab46aa53d7081df4e3d8153.tar.bz2
Clarify docstring
Diffstat (limited to 'Lib/base64.py')
-rwxr-xr-xLib/base64.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/base64.py b/Lib/base64.py
index c196cd8..41a5e14 100755
--- a/Lib/base64.py
+++ b/Lib/base64.py
@@ -308,7 +308,7 @@ def decode(input, output):
def encodestring(s):
- """Encode a string."""
+ """Encode a string into multiple lines of base-64 data."""
pieces = []
for i in range(0, len(s), MAXBINSIZE):
chunk = s[i : i + MAXBINSIZE]