Skip to content

Commit 1bb264c

Browse files
authored
API(str dtype): Raise on StringDtype for unary op + (#60710)
1 parent 5efac82 commit 1bb264c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

doc/source/whatsnew/v2.3.0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ Conversion
105105

106106
Strings
107107
^^^^^^^
108+
- Bug in :meth:`Series.__pos__` and :meth:`DataFrame.__pos__` did not raise for :class:`StringDtype` with ``storage="pyarrow"`` (:issue:`60710`)
108109
- Bug in :meth:`Series.rank` for :class:`StringDtype` with ``storage="pyarrow"`` incorrectly returning integer results in case of ``method="average"`` and raising an error if it would truncate results (:issue:`59768`)
109110
- Bug in :meth:`Series.replace` with :class:`StringDtype` when replacing with a non-string value was not upcasting to ``object`` dtype (:issue:`60282`)
110111
- Bug in :meth:`Series.str.replace` when ``n < 0`` for :class:`StringDtype` with ``storage="pyarrow"`` (:issue:`59628`)

pandas/core/arrays/string_arrow.py

+3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,9 @@ def _cmp_method(self, other, op):
481481
return result.to_numpy(np.bool_, na_value=False)
482482
return result
483483

484+
def __pos__(self) -> Self:
485+
raise TypeError(f"bad operand type for unary +: '{self.dtype}'")
486+
484487

485488
class ArrowStringArrayNumpySemantics(ArrowStringArray):
486489
_na_value = np.nan

pandas/tests/frame/test_unary.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
import numpy as np
44
import pytest
55

6-
from pandas._config import using_string_dtype
7-
8-
from pandas.compat import HAS_PYARROW
96
from pandas.compat.numpy import np_version_gte1p25
107

118
import pandas as pd
@@ -122,9 +119,6 @@ def test_pos_object(self, df_data):
122119
tm.assert_frame_equal(+df, df)
123120
tm.assert_series_equal(+df["a"], df["a"])
124121

125-
@pytest.mark.xfail(
126-
using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string)"
127-
)
128122
@pytest.mark.filterwarnings("ignore:Applying:DeprecationWarning")
129123
def test_pos_object_raises(self):
130124
# GH#21380

0 commit comments

Comments
 (0)