diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2019-10-09 21:09:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-09 21:09:00 (GMT) |
commit | 09895c27cd8ff60563a794016e8c099bc897cc74 (patch) | |
tree | 880845dcae27149f01fd819386f4e26035713fda /Objects/clinic | |
parent | ecbf35f9335b0420cb8adfda6f299d6747a16515 (diff) | |
download | cpython-09895c27cd8ff60563a794016e8c099bc897cc74.zip cpython-09895c27cd8ff60563a794016e8c099bc897cc74.tar.gz cpython-09895c27cd8ff60563a794016e8c099bc897cc74.tar.bz2 |
bpo-38409: Fix grammar in str.strip() docstring (GH-16682)
Diffstat (limited to 'Objects/clinic')
-rw-r--r-- | Objects/clinic/unicodeobject.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/clinic/unicodeobject.c.h b/Objects/clinic/unicodeobject.c.h index c7d6edb..0d13406 100644 --- a/Objects/clinic/unicodeobject.c.h +++ b/Objects/clinic/unicodeobject.c.h @@ -582,7 +582,7 @@ PyDoc_STRVAR(unicode_strip__doc__, "strip($self, chars=None, /)\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" "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); } -/*[clinic end generated code: output=5e15747f78f18329 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=e4ed33400979c7e8 input=a9049054013a1b77]*/ |