Add missing closing quote and trailing period in str.isidentifier() docstring (GH-9756)

This rectifies commit ffc5a14d00.
This commit is contained in:
Emanuele Gaifas 2018-10-08 12:44:47 +02:00 committed by Carol Willing
parent ffc5a14d00
commit fc8205cb4b
2 changed files with 4 additions and 4 deletions

View file

@ -382,7 +382,7 @@ PyDoc_STRVAR(unicode_isidentifier__doc__,
"Return True if the string is a valid Python identifier, False otherwise.\n"
"\n"
"Call keyword.iskeyword(s) to test whether string s is a reserved identifier,\n"
"such as \"def\" or \"class");
"such as \"def\" or \"class\".");
#define UNICODE_ISIDENTIFIER_METHODDEF \
{"isidentifier", (PyCFunction)unicode_isidentifier, METH_NOARGS, unicode_isidentifier__doc__},
@ -951,4 +951,4 @@ unicode_sizeof(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return unicode_sizeof_impl(self);
}
/*[clinic end generated code: output=c9476bf19f13c286 input=a9049054013a1b77]*/
/*[clinic end generated code: output=8bcd992b25733bcc input=a9049054013a1b77]*/