[Python-checkins] r75079 - python/branches/py3k/Doc/library/string.rst

georg.brandl python-checkins at python.org
Sat Sep 26 22:59:12 CEST 2009


Author: georg.brandl
Date: Sat Sep 26 22:59:11 2009
New Revision: 75079

Log:
fix default value

Modified:
   python/branches/py3k/Doc/library/string.rst

Modified: python/branches/py3k/Doc/library/string.rst
==============================================================================
--- python/branches/py3k/Doc/library/string.rst	(original)
+++ python/branches/py3k/Doc/library/string.rst	Sat Sep 26 22:59:11 2009
@@ -565,7 +565,7 @@
 Helper functions
 ----------------
 
-.. function:: capwords(s, sep=' ')
+.. function:: capwords(s, sep=None)
 
    Split the argument into words using :meth:`str.split`, capitalize each word
    using :meth:`str.capitalize`, and join the capitalized words using


More information about the Python-checkins mailing list