Issue #27171: Merge typo fixes from 3.5

This commit is contained in:
Martin Panter 2016-06-02 10:11:18 +00:00
commit 0b7d84de6b
30 changed files with 51 additions and 51 deletions

View file

@ -9492,7 +9492,7 @@ tailmatch(PyObject *self,
PyUnicode_GET_LENGTH(substring) *
PyUnicode_KIND(substring));
}
/* otherwise we have to compare each character by first accesing it */
/* otherwise we have to compare each character by first accessing it */
else {
/* We do not need to compare 0 and len(substring)-1 because
the if statement above ensured already that they are equal