File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -543,6 +543,7 @@ Removal of prior version deprecations/changes
543
543
- ``pd.Categorical`` has dropped setting of the ``ordered`` attribute directly in favor of the ``set_ordered`` method (:issue:`13671`)
544
544
- ``pd.Categorical`` has dropped the ``levels`` attribute in favour of ``categories`` (:issue:`8376`)
545
545
- ``DataFrame.to_sql()`` has dropped the ``mysql`` option for the ``flavor`` parameter (:issue:`13611`)
546
+ - ``pd.Index`` has dropped the ``diff`` method in favour of ``difference`` (:issue:`13669`)
546
547
547
548
- Removal of the legacy time rules (offset aliases), deprecated since 0.17.0 (this has been alias since 0.8.0) (:issue:`13590`)
548
549
Original file line number Diff line number Diff line change @@ -1965,8 +1965,6 @@ def difference(self, other):
1965
1965
1966
1966
return this ._shallow_copy (the_diff , name = result_name )
1967
1967
1968
- diff = deprecate ('diff' , difference )
1969
-
1970
1968
def symmetric_difference (self , other , result_name = None ):
1971
1969
"""
1972
1970
Compute the symmetric difference of two Index objects.
You can’t perform that action at this time.
0 commit comments