Skip to content

Commit a70b88b

Browse files
[backport 2.3.x] API(str dtype): Raise on StringDtype for unary op + (#60710) (#60763)
API(str dtype): Raise on StringDtype for unary op + (#60710) (cherry picked from commit 1bb264c) Co-authored-by: Richard Shadrach <[email protected]>
1 parent 00e0603 commit a70b88b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

doc/source/whatsnew/v2.3.0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ Conversion
106106

107107
Strings
108108
^^^^^^^
109+
- Bug in :meth:`Series.__pos__` and :meth:`DataFrame.__pos__` did not raise for :class:`StringDtype` with ``storage="pyarrow"`` (:issue:`60710`)
109110
- 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`)
110111
- Bug in :meth:`Series.replace` with :class:`StringDtype` when replacing with a non-string value was not upcasting to ``object`` dtype (:issue:`60282`)
111112
- Bug in :meth:`Series.str.replace` when ``n < 0`` for :class:`StringDtype` with ``storage="pyarrow"`` (:issue:`59628`)

pandas/core/arrays/string_arrow.py

+4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
from pandas._typing import (
5252
ArrayLike,
5353
Dtype,
54+
Self,
5455
npt,
5556
)
5657

@@ -476,6 +477,9 @@ def _cmp_method(self, other, op):
476477
return result.to_numpy(np.bool_, na_value=False)
477478
return result
478479

480+
def __pos__(self) -> Self:
481+
raise TypeError(f"bad operand type for unary +: '{self.dtype}'")
482+
479483

480484
class ArrowStringArrayNumpySemantics(ArrowStringArray):
481485
_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
@@ -120,9 +117,6 @@ def test_pos_object(self, df):
120117
tm.assert_frame_equal(+df, df)
121118
tm.assert_series_equal(+df["a"], df["a"])
122119

123-
@pytest.mark.xfail(
124-
using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string)"
125-
)
126120
@pytest.mark.parametrize(
127121
"df",
128122
[

0 commit comments

Comments
 (0)