We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7f447c + 057119b commit f2f2bfeCopy full SHA for f2f2bfe
1 file changed
Objects/unicodeobject.c
@@ -9146,7 +9146,7 @@ tailmatch(PyObject *self,
9146
/* We do not need to compare 0 and len(substring)-1 because
9147
the if statement above ensured already that they are equal
9148
when we end up here. */
9149
- // TODO: honor direction and do a forward or backwards search
+ /* TODO: honor direction and do a forward or backwards search */
9150
for (i = 1; i < end_sub; ++i) {
9151
if (PyUnicode_READ(kind_self, data_self, offset + i) !=
9152
PyUnicode_READ(kind_sub, data_sub, i))
0 commit comments