summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-05 12:04:23 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-05 12:04:23 (GMT)
commit74ceac2306d69f5f6e58dd92177be6ea28c155ab (patch)
tree7c6415a83edfa2fbd92102cd4792c9ec8df2bc2b /Objects/unicodeobject.c
parent3592a46c4d22202541c58d2ed0bdc463e2c4e750 (diff)
downloadcpython-74ceac2306d69f5f6e58dd92177be6ea28c155ab.zip
cpython-74ceac2306d69f5f6e58dd92177be6ea28c155ab.tar.gz
cpython-74ceac2306d69f5f6e58dd92177be6ea28c155ab.tar.bz2
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 8b1f01c..db77b8a 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -6766,7 +6766,7 @@ PyDoc_STRVAR(capitalize__doc__,
"S.capitalize() -> str\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)