Skip to content

Commit 4f7ada3

Browse files
committed
update whatsnew and add issue number
1 parent 9736f38 commit 4f7ada3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

doc/source/whatsnew/v0.24.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@ ExtensionType Changes
493493
- :meth:`Series.combine()` with scalar argument now works for any function type (:issue:`21248`)
494494
- :meth:`Series.astype` and :meth:`DataFrame.astype` now dispatch to :meth:`ExtensionArray.astype` (:issue:`21185:`).
495495
- Added :meth:`pandas.api.types.register_extension_dtype` to register an extension type with pandas (:issue:`22664`)
496+
- Bug in :meth:`pandas.core.ops.dispatch_to_extension_op` where addition of ``Series`` of ``IntegerArray`` and ``IntegerArray`` values raise runtime exception (:issue `22478`)
496497

497498
.. _whatsnew_0240.api.incompatibilities:
498499

pandas/tests/arrays/test_integer.py

+1
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,7 @@ def test_cross_type_arithmetic():
588588

589589

590590
def test_arith_extension_array_values():
591+
# GH 22478
591592
s = pd.Series([1, 2, 3], dtype='Int64')
592593
result = s + s.values
593594
expected = pd.Series([2, 4, 6], dtype='Int64')

0 commit comments

Comments
 (0)