vstinner / hachoir

Hachoir is a Python library to view and edit a binary stream field by field
http://hachoir.readthedocs.io/
GNU General Public License v2.0
604 stars 70 forks source link

Pylint warning #56

Closed dismine closed 4 years ago

dismine commented 4 years ago

W0631: Using possibly undefined loop variable 'index' (undefined-loop-variable)

https://github.com/vstinner/hachoir/blob/4403b0c662c6d4107e7d66d530b6afc87464d8dd/hachoir/regex/regex.py#L506

nneonneo commented 4 years ago

This is a false positive - new cannot be set unless the loop runs once.

vstinner commented 4 years ago

This is a false positive - new cannot be set unless the loop runs once.

No problem ;-)