[Python-checkins] python/dist/src/Lib string.py,1.81,1.82

doerwalter at users.sourceforge.net doerwalter at users.sourceforge.net
Tue Sep 14 11:45:12 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17104/Lib

Modified Files:
	string.py 
Log Message:
Make the hint about the None default less ambiguous.


Index: string.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/string.py,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -d -r1.81 -r1.82
--- string.py	14 Sep 2004 09:40:45 -0000	1.81
+++ string.py	14 Sep 2004 09:45:10 -0000	1.82
@@ -282,7 +282,7 @@
     Return a list of the words in the string s, using sep as the
     delimiter string.  If maxsplit is given, splits at no more than
     maxsplit places (resulting in at most maxsplit+1 words).  If sep
-    is not specified or None, any whitespace string is a separator.
+    is not specified or is None, any whitespace string is a separator.
 
     (split and splitfields are synonymous)
 



More information about the Python-checkins mailing list