-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
AttributeError: 'Call' object has no attribute 'value' #16
Labels
bug
Something isn't working
Comments
In the debugger: python -i $(which symbex) '*' -s
I bounced up the stack a few times and found this: def function_with_non_pep_0484_annotation(
x: "I can put anything here",
xx: "",
yy: "\r\n\0;+*&^564835(---^&*34",
y: 3 + 3,
zz: float) -> int("42"):
# infers int from function call
#? int()
x
# infers int from function call
#? int()
xx
# infers int from function call
#? int()
yy
# infers str from function call
#? str()
y
#? float()
zz
#? Looks like that's from the Jedi test suite: https://github.com/davidhalter/jedi/blob/3699ba0aa7efd1c18e366804a2fd82e242f54231/test/completion/pep0484_basic.py#L113 |
Since this is such an edge case I'm going to turn it into a |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to this issue:
I can now run
symbex '*' -s
in REALLY big directories, which is a great way to stress test it.Got this:
The text was updated successfully, but these errors were encountered: