From 6d72b0e1f8c6e096aab46aa53d7081df4e3d8153 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Fri, 27 Oct 2006 17:06:16 +0000 Subject: [PATCH] Clarify docstring --- Lib/base64.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/base64.py b/Lib/base64.py index c196cd8a841..41a5e1470c1 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]