commit | e51ee8a5bc2c0465c4058ba9b97d3c27a4624c16 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Mon Jul 05 12:00:56 2010 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Mon Jul 05 12:00:56 2010 +0000 |
tree | ae36df14258568c729e0a7e585353c195675f4c8 | |
parent | fa8979867f6f122103aedbee5d31e97de976cea3 [diff] [blame] |
Fix the docstrings of the capitalize method.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index dba3d36..6270e9b 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -6705,7 +6705,7 @@ "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)