[Python-checkins] r52480 - python/trunk/Lib/base64.py

andrew.kuchling python-checkins at python.org
Fri Oct 27 19:06:17 CEST 2006


Author: andrew.kuchling
Date: Fri Oct 27 19:06:16 2006
New Revision: 52480

Modified:
   python/trunk/Lib/base64.py
Log:
Clarify docstring

Modified: python/trunk/Lib/base64.py
==============================================================================
--- python/trunk/Lib/base64.py	(original)
+++ python/trunk/Lib/base64.py	Fri Oct 27 19:06:16 2006
@@ -308,7 +308,7 @@
 
 
 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]


More information about the Python-checkins mailing list