Stefan Krah <[email protected]> added the comment:
Looking at it again, the intention was probably to increment
collend so that it points to the first non-garbage character
(or '\0'). If that's the case, the loop should be something
like this:
while (collend < end) {
if ((0 < *collend && *collend < 256) ||
Py_UNICODE_ISSPACE(*collend) ||
Py_UNICODE_TODECIMAL(*collend) >= 0)
break;
collend++;
}
I can understand if no one wants to touch this given that
the function is deprecated, provided that you agree that
the existing code is redundant but harmless; i.e. it cannot
enter an infinite loop.
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue13093>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com