-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Fixed bug. Added in check for ufunc and evaluates inner expression be… #33613
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
Conversation
…fore evaluating outer expression
Is this ready to be accepted @maintainters @jbrockmendel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pls write tests first
any suggestions on why the failures are only occurring on some systems? @jreback |
I tested this branch locally using a function that makes multiple arguments, and it isn't working properly either. It isn't parsing the multiple arguments correctly. import pandas as pd
from numpy import *
print(pd.__version__)
r = pd.eval("floor(1+5)")
print(r)
r = pd.eval("minimum(1 + 5, 4)") # This one fails
print(r) |
Looking at the Azure CI output logs, it looks like you are failing on the environments that are testing the minimum versions, in particular, the lowest version of The Travis CI failures look like they are on environments that have |
can you merge master and get this passing and will have a look |
closing as stale, if you'd like continue, pls ping. |
…fore evaluating outer expression
black pandas