bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16684)

(cherry picked from commit 09895c27cd)
This commit is contained in:
Miss Islington (bot) 2019-10-09 14:55:39 -07:00 committed by Zachary Ware
parent 0bd9fac7a8
commit 0baa6b3c7d
2 changed files with 4 additions and 4 deletions

View File

@ -582,7 +582,7 @@ PyDoc_STRVAR(unicode_strip__doc__,
"strip($self, chars=None, /)\n" "strip($self, chars=None, /)\n"
"--\n" "--\n"
"\n" "\n"
"Return a copy of the string with leading and trailing whitespace remove.\n" "Return a copy of the string with leading and trailing whitespace removed.\n"
"\n" "\n"
"If chars is given and not None, remove characters in chars instead."); "If chars is given and not None, remove characters in chars instead.");
@ -1232,4 +1232,4 @@ unicode_sizeof(PyObject *self, PyObject *Py_UNUSED(ignored))
{ {
return unicode_sizeof_impl(self); return unicode_sizeof_impl(self);
} }
/*[clinic end generated code: output=5e15747f78f18329 input=a9049054013a1b77]*/ /*[clinic end generated code: output=e4ed33400979c7e8 input=a9049054013a1b77]*/

View File

@ -12476,14 +12476,14 @@ str.strip as unicode_strip
chars: object = None chars: object = None
/ /
Return a copy of the string with leading and trailing whitespace remove. Return a copy of the string with leading and trailing whitespace removed.
If chars is given and not None, remove characters in chars instead. If chars is given and not None, remove characters in chars instead.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
unicode_strip_impl(PyObject *self, PyObject *chars) unicode_strip_impl(PyObject *self, PyObject *chars)
/*[clinic end generated code: output=ca19018454345d57 input=eefe24a1059c352b]*/ /*[clinic end generated code: output=ca19018454345d57 input=385289c6f423b954]*/
{ {
return do_argstrip(self, BOTHSTRIP, chars); return do_argstrip(self, BOTHSTRIP, chars);
} }