./pwnlib/lexer.py: Undefined names in __all__ #1309
Labels
code style
good first issue
Good if you want to help but you do not know the project well
help-wanted
Pwntools Issue Template
Thanks for contributing to Pwntools!
When reporting an issue, be sure that you are running the latest released version of pwntools (
pip install --upgrade pwntools
).Please verify that your issue occurs on 64-bit Ubuntu 14.04. You can use the Dockerfile on
docker.io
for quick testing.If possible, provide a proof-of-concept which demonstrates the problem. Include any binaries or scripts necessary to reproduce the issue, and please include the full debug output via setting the environment variable
PWNLIB_DEBUG=1
.We are trying to export these variables in
__all__
but they are not defined. Are we making promises that we cannot fulfill? Where are these variables defined?flake8 testing of https://github.com/Gallopsled/pwntools on Python 2.7.15
$ flake8 . --count --select=F822 --show-source --statistics
F822 is the "showstopper" flake8 issue that can halt the runtime with a NameError. This error is different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.
name
in__all__
The text was updated successfully, but these errors were encountered: