We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce897f commit 0c09bd1Copy full SHA for 0c09bd1
pandas/computation/tests/test_eval.py
@@ -1630,6 +1630,11 @@ def test_result_types(self):
1630
self.check_result_type(np.int64, np.float64)
1631
self.check_result_type(np.float32, np.float32)
1632
self.check_result_type(np.float64, np.float64)
1633
+
1634
+ def test_result_types2(self):
1635
+ # xref https://github.com/pydata/pandas/issues/12293
1636
+ tm._skip_if_windows()
1637
1638
# Did not test complex64 because DataFrame is converting it to
1639
# complex128. Due to https://github.com/pydata/pandas/issues/10952
1640
self.check_result_type(np.complex128, np.complex128)
0 commit comments