-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: recursion limit on eval when operating on different types #5198
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
Comments
Just now saw this |
…ype-operations BUG: disallow mixed dtype operations in eval/query
Not sure if this deserves a separate issue as this one is very old but I think this is related. After some hypothesis testing on our codebase we noticed this causes a max recursion limit as well: df = pd.DataFrame(index=list(range(0,1)), columns=list('abc'))
df.eval('a*b') And: df = pd.DataFrame(columns=list('abc'))
df.eval('a*b') INSTALLED VERSIONS commit : None |
@ccharlesgb Probably open a new issue for that. |
Me being dumb discovered this:
cc @cpcloud
The text was updated successfully, but these errors were encountered: