We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When parsing this snippet of code:
import os.path os.path.join("a", "b")
scope["os.path"] ends up finding the import Assignment with one reference. But on the other hand, after merely adding strip() to it, as in:
scope["os.path"]
Assignment
strip()
import os.path os.path.join("a", "b").strip()
The Assignment for scope["os.path"] no longer has any references, but `scope["os"] does.
The text was updated successfully, but these errors were encountered:
Fixed by #362
Sorry, something went wrong.
No branches or pull requests
When parsing this snippet of code:
scope["os.path"]
ends up finding the importAssignment
with one reference. But on the other hand, after merely addingstrip()
to it, as in:The
Assignment
forscope["os.path"]
no longer has any references, but `scope["os"] does.The text was updated successfully, but these errors were encountered: