summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-05 12:04:07 +0000
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-05 12:04:07 +0000
commit5261b10556d11b206d878b8382016fbfcc703927 (patch)
tree755896377d471b908b5885c437f31a462454fe03 /Objects/unicodeobject.c
parentca92a60e2ee11d3cc6fee33dd3b0f4bf4ce1d987 (diff)
downloadcpython-git-5261b10556d11b206d878b8382016fbfcc703927.tar.gz
Merged revisions 82573 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82573 | senthil.kumaran | 2010-07-05 17:30:56 +0530 (Mon, 05 Jul 2010) | 3 lines Fix the docstrings of the capitalize method. ........
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 8b3b861bee..b182927911 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -5938,7 +5938,7 @@ PyDoc_STRVAR(capitalize__doc__,
"S.capitalize() -> unicode\n\
\n\
Return a capitalized version of S, i.e. make the first character\n\
-have upper case.");
+have upper case and the rest lower case.");
static PyObject*
unicode_capitalize(PyUnicodeObject *self)