diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-07-05 11:44:34 +0000 |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-07-05 11:44:34 +0000 |
commit | ca92a60e2ee11d3cc6fee33dd3b0f4bf4ce1d987 (patch) | |
tree | b8c3285c3091e4b9b0d96e9ea2c751a5f06a6322 | |
parent | d6bbe0c17951dc41228ed96ff55482e09274563b (diff) | |
download | cpython-git-ca92a60e2ee11d3cc6fee33dd3b0f4bf4ce1d987.tar.gz |
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.
........
-rw-r--r-- | Doc/library/stdtypes.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 1f440160fa..4ac5803ac1 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -830,7 +830,8 @@ string functions based on regular expressions. .. 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. For 8-bit strings, this method is locale-dependent. |