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
* Abstract all arithmetic methods into core/ops
* Normalize arithmetic methods signature (see
`ops.add_special_arithmetic_methods` and `ops.add_flex_arithmetic_methods`
for signature).
* Opt-in more arithmetic operations with numexpr (except for
SparsePanel, which has to opt-out because it doesn't respond to
`shape`).
* BUG: Fix ``_fill_zeros`` call to work even if TypeError (previously
was inconsistent).
* Add bind method to core/common
* Add full range of flex arithmetic methods to all NDFrame/ndarray
PandasObjects (except for SparsePanel pow and mod, which only work for
scalars)
* Add a set of testing methods to check that numexpr was actually used
successfully.
* Flesh out test cases to include all arithmetic ops + test refactoring
* Disable numexpr for sparse objects (they don't work correctly right
* now)
* Sparse methods aren't moved because they are very specific to sparse
(and aren't numexpr accelerated)
* Disable r* comparisons for now because they cause test failures
* Specifically allow radd in TimeOps for Series
* Fixup Series time rops and add a few test cases.
* Disable flex r-ops for bools (no good test cases yet...)
* TST: Remove tests for TypeErrors in pandas/computation/test_eval that
now work after this refactor (because DataFrame now defines more r*
methods)
0 commit comments