We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee3c18f commit 091baa8Copy full SHA for 091baa8
pandas/core/indexes/base.py
@@ -875,8 +875,7 @@ def _engine(
875
# error: Item "ExtensionArray" of "Union[ExtensionArray,
876
# ndarray[Any, Any]]" has no attribute "_ndarray" [union-attr]
877
target_values = self._data._ndarray # type: ignore[union-attr]
878
- elif is_string_dtype(self.dtype) and not is_object_dtype(self.dtype):
879
- return libindex.StringEngine(target_values)
+ # TODO re-enable StringEngine for string dtype
880
881
# error: Argument 1 to "ExtensionEngine" has incompatible type
882
# "ndarray[Any, Any]"; expected "ExtensionArray"
0 commit comments