[Python-checkins] r82572 - in python/branches/release31-maint: Doc/library/stdtypes.rst

senthil.kumaran python-checkins at python.org
Mon Jul 5 13:44:49 CEST 2010


Author: senthil.kumaran
Date: Mon Jul  5 13:44:49 2010
New Revision: 82572

Log:
Merged revisions 82570 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82570 | senthil.kumaran | 2010-07-05 17:11:42 +0530 (Mon, 05 Jul 2010) | 3 lines
  
  Fix: Issue9091 Minor documentation clarification.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/library/stdtypes.rst

Modified: python/branches/release31-maint/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/stdtypes.rst	(original)
+++ python/branches/release31-maint/Doc/library/stdtypes.rst	Mon Jul  5 13:44:49 2010
@@ -800,7 +800,8 @@
 
 .. method:: str.capitalize()
 
-   Return a copy of the string with only its first character capitalized.
+   Return a copy of the string with its first character capitalized and the
+   rest lowered.
 
 
 .. method:: str.center(width[, fillchar])


More information about the Python-checkins mailing list