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
It seems that the eval function doesn't work when using named parameters:
>>> import pandas.core.computation.eval as eval >>> def func(a=None): return a*a ... >>> eval.eval('func(a=2)') /expr.py", line 314, in visit return visitor(node, **kwargs) File "python3.6/site-packages/pandas/core/computation/expr.py", line 581, in visit_Call_35 kwargs.append(ast.keyword( AttributeError: 'dict' object has no attribute 'append'
Looks like some neglected code in expr.py.
expr.py
The text was updated successfully, but these errors were encountered:
this is not supported, though you are welcome to submit a PR
Sorry, something went wrong.
if you search for eval in github you will see that many such things are simply not implemented.
eval
No branches or pull requests
It seems that the eval function doesn't work when using named parameters:
Looks like some neglected code in
expr.py
.The text was updated successfully, but these errors were encountered: