diff -r 2ccdf2b3819d Objects/unicodeobject.c --- a/Objects/unicodeobject.c Mon Jan 16 17:18:53 2017 +0100 +++ b/Objects/unicodeobject.c Mon Jan 16 21:00:13 2017 +0100 @@ -10811,7 +10811,6 @@ str.center as unicode_center width: Py_ssize_t fillchar: Py_UCS4 = ' ' - / Return a centered string of length width. @@ -12199,7 +12198,6 @@ unicode_isprintable_impl(PyObject *self) str.join as unicode_join iterable: object - / Concatenate any number of strings. @@ -12229,7 +12227,6 @@ str.ljust as unicode_ljust width: Py_ssize_t fillchar: Py_UCS4 = ' ' - / Return a left-justified string of length width. @@ -12451,7 +12448,6 @@ do_argstrip(PyObject *self, int striptyp str.strip as unicode_strip chars: object = None - / Return a copy of the string with leading and trailing whitespace removed. @@ -12470,7 +12466,6 @@ unicode_strip_impl(PyObject *self, PyObj str.lstrip as unicode_lstrip chars: object = NULL - / Return a copy of the string with leading whitespace removed. @@ -12489,7 +12484,6 @@ unicode_lstrip_impl(PyObject *self, PyOb str.rstrip as unicode_rstrip chars: object = NULL - / Return a copy of the string with trailing whitespace removed. @@ -12588,7 +12582,6 @@ str.replace as unicode_replace count: Py_ssize_t = -1 Maximum number of occurrences to replace. -1 (the default value) means replace all occurrences. - / Return a copy with all occurrences of substring old replaced by new. @@ -12840,7 +12833,6 @@ str.rjust as unicode_rjust width: Py_ssize_t fillchar: Py_UCS4 = ' ' - / Return a right-justified string of length width. @@ -13017,7 +13009,6 @@ PyUnicode_RPartition(PyObject *str_obj, str.partition as unicode_partition sep: object - / Partition the string into three parts using the given separator. @@ -13133,13 +13124,9 @@ unicode_swapcase_impl(PyObject *self) str.maketrans as unicode_maketrans x: object - y: unicode=NULL - z: unicode=NULL - / - Return a translation table usable for str.translate(). If there is only one argument, it must be a dictionary mapping Unicode @@ -13263,7 +13250,6 @@ str.translate as unicode_translate table: object Translation table, which must be a mapping of Unicode ordinals to Unicode ordinals, strings, or None. - / Replace each character in the string using the given translation table. @@ -13300,7 +13286,6 @@ unicode_upper_impl(PyObject *self) str.zfill as unicode_zfill width: Py_ssize_t - / Pad a numeric string with zeros on the left, to fill a field of the given width. @@ -13807,7 +13792,6 @@ The substitutions are identified by brac str.__format__ as unicode___format__ format_spec: unicode - / Return a formatted version of the string as described by format_spec. [clinic start generated code]*/