From: Senthil Kumaran Date: Mon, 5 Jul 2010 12:00:56 +0000 (+0000) Subject: Fix the docstrings of the capitalize method. X-Git-Tag: v3.2a1~306 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e51ee8a5bc2c0465c4058ba9b97d3c27a4624c16;p=thirdparty%2FPython%2Fcpython.git Fix the docstrings of the capitalize method. --- diff --git a/Objects/bytes_methods.c b/Objects/bytes_methods.c index 215a1fac0ffe..b41b3d9b80be 100644 --- a/Objects/bytes_methods.c +++ b/Objects/bytes_methods.c @@ -332,7 +332,8 @@ _Py_bytes_title(char *result, char *s, Py_ssize_t len) PyDoc_STRVAR_shared(_Py_capitalize__doc__, "B.capitalize() -> copy of B\n\ \n\ -Return a copy of B with only its first character capitalized (ASCII)."); +Return a copy of B with only its first character capitalized (ASCII)\n\ +and the rest lower-cased."); void _Py_bytes_capitalize(char *result, char *s, Py_ssize_t len) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index dba3d365fc35..6270e9bffcfb 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -6705,7 +6705,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)