We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda257b commit f69d130Copy full SHA for f69d130
tests/test_sign_parse.py
@@ -19,6 +19,12 @@ def test_sign_parse_1():
19
}
20
)
21
22
+ # we don't want this error, but it is something we can't work around
23
+ # yet. It is also the kind of thing we are trying to avoid in the
24
+ # test_if_else_complex() test.
25
+ with pytest.raises(AttributeError):
26
+ res_pandas = ops.transform(d)
27
+
28
# # Pandas mis-parses -3 is unary_op(3) and then throws!
29
# # TODO: look towards non-eval implementations for non-windowed situations?
30
# # TODO: look into pre-landing columns in many cases?
0 commit comments