-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
binary/hex integer literals with separators lead to parse error #75
Comments
Makes sense. Have a proposed code change? |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Integer literals are allowed to contain
'
separators these days as per [lex.icon]. The implementation handles them correctly for decimal/octal literals, but chokes on hex/binary ones, if the number of'
is odd:It appears that
flawfinder/flawfinder.py
Line 1902 in 614801f
The text was updated successfully, but these errors were encountered: