8000 DEPR: remove get_values, SparseArray.values by jbrockmendel · Pull Request #29989 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DEPR: remove get_values, SparseArray.values #29989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 4, 2019
Prev Previous commit
Next Next commit
black fixup
  • Loading branch information
jbrockmendel committed Dec 3, 2019
commit 596d28ce0269100dece61d579774b43c2594e171
4 changes: 1 addition & 3 deletions pandas/core/arrays/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,7 @@ class Categorical(ExtensionArray, PandasObject):
__array_priority__ = 1000
_dtype = CategoricalDtype(ordered=False)
# tolist is not actually deprecated, just suppressed in the __dir__
_deprecations = PandasObject._deprecations | frozenset(
["tolist", "itemsize"]
)
_deprecations = PandasObject._deprecations | frozenset(["tolist", "itemsize"])
_typ = "categorical"

def __init__(
Expand Down
0