Thanks to visit codestin.com Credit goes to github.com
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.
1 parent a3b84fb commit 057119bCopy full SHA for 057119b
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