You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With a very simple dataframe (one column col1 and 3 rows),
res = df[df['col1'] == 2]
throws exception :
Unhandled exception caught during execution: False
mojo: error: execution exited with a non-zero result: 1
or
Unhandled exception caught during execution: <cyfunction item_from_zerodim at 0x7f50ea1cdf20> returned a result with an exception set
mojo: error: execution exited with a non-zero result: 1
Expected behavior
With same dataframe,
res = df[(df['col1'] >= 2) & (df['col1'] <= 2)]
works perfectly and return expected rows
Steps to reproduce
from python import Python
def main():
pd = Python.import_module("pandas")
data = Python.dict()
data['col1'] = [1,2,3]
df = pd.DataFrame(data)
res = df[df['col1'] == 2]
print(res)
System information
magic 07.2
mojo 25.2.0 (26172dfe)
pandas 2.2.3
The text was updated successfully, but these errors were encountered:
Bug description
Actual behavior
With a very simple dataframe (one column col1 and 3 rows),
res = df[df['col1'] == 2]
throws exception :
Unhandled exception caught during execution: False
mojo: error: execution exited with a non-zero result: 1
or
Unhandled exception caught during execution: <cyfunction item_from_zerodim at 0x7f50ea1cdf20> returned a result with an exception set
mojo: error: execution exited with a non-zero result: 1
Expected behavior
With same dataframe,
res = df[(df['col1'] >= 2) & (df['col1'] <= 2)]
works perfectly and return expected rows
Steps to reproduce
System information
The text was updated successfully, but these errors were encountered: