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
Fix binary operations on attrs for Series and DataFrame (#59636)
* Fix binary operators on attrs for Series and DataFrame
* Add tests for Series and DataFrame for attrs binary operations
* Add getattr as other might not possess attrs as attribute
* Fix some tests in pandas/tests/generic/test_finalize.py::test_binops
* remove xfail tests related to attrs
* Add all_binary_operators
* use __finalize__ for attrs bin ops in base.py
* use __finalize__ for attrs bin ops in frame.py
* use __finalize__ for attrs bin ops in series.py
* ENH: Ensure attrs are copied from other in Series arithmetic operations. Moved from base.py to series.py
* REF: Refactor binary operation tests for DataFrame and Series attributes
* REF: Enhance _construct_result method to accept 'other' parameter for improved attribute handling
* REF: Simplify test_attrs_binary_operations by parameterizing left and right inputs
* Refactor DataFrame and Series methods to improve attribute handling and finalize behavior
* Refactor DataFrame alignment logic to improve attribute consistency
* Refactor DataFrame and Series methods to enhance attribute finalization logic
* Clean and remove unnecessry checks
* Fix: Prioritizing False if self.flags.allows_duplicate_labels or other.flags.allows_duplicate_labels is False
0 commit comments