mirror of
https://github.com/python/cpython.git
synced 2025-07-15 23:35:23 +00:00
Fix C++-style comment (xlc compilation failure)
This commit is contained in:
parent
a3b84fb2f9
commit
057119b0b7
1 changed files with 1 additions and 1 deletions
|
@ -9146,7 +9146,7 @@ tailmatch(PyObject *self,
|
|||
/* We do not need to compare 0 and len(substring)-1 because
|
||||
the if statement above ensured already that they are equal
|
||||
when we end up here. */
|
||||
// TODO: honor direction and do a forward or backwards search
|
||||
/* TODO: honor direction and do a forward or backwards search */
|
||||
for (i = 1; i < end_sub; ++i) {
|
||||
if (PyUnicode_READ(kind_self, data_self, offset + i) !=
|
||||
PyUnicode_READ(kind_sub, data_sub, i))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue