You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MAINT: refactor from_items() using from_dict(). Fixespandas-dev#21850
This removes the deprecation warnings introduced in pandas-dev#18262,
by reimplementing DataFrame.from_items() in the recommended
way using DataFrame.from_dict() and collections.OrderedDict.
This eliminates the maintenance burden of separate code for
from_items(), while allowing existing uses to keep working.
A small cleanup can be done once pandas-dev#8425 is fixed.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.24.0.txt
+1
Original file line number
Diff line number
Diff line change
@@ -391,6 +391,7 @@ Removal of prior version deprecations/changes
391
391
392
392
- The ``LongPanel`` and ``WidePanel`` classes have been removed (:issue:`10892`)
393
393
- Several private functions were removed from the (non-public) module ``pandas.core.common`` (:issue:`22001`)
394
+
- :meth: `~pandas.DataFrame.from_items` has been refactored and the deprecation warning from v0.23.0 has been removed (i.e. it is no longer deprecated)
0 commit comments