Serhiy Storchaka added the comment:

The code is correct, it just can be made cleaner. No need to backport the 
change to other versions.

The line "if line[pos] in '#\r\n':" looks a kind of optimization. In common 
case (not a newline and not a comment) there is only one check. The expression 
"(NL, COMMENT)[line[pos] == '#']" is redundant of course, it can be replaced by 
just "NL". Note that now the line that yields yield TokenInfo(NL, ...) is 
almost the same for comments and newlines. If rename nl_pos to pos the same 
line can be used in both cases.

----------
nosy: +serhiy.storchaka
versions:  -Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30377>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to