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
- Bug in :meth:`DataFrame.truncate` and :meth:`Series.truncate` where index was assumed to be monotone increasing (:issue:`33756`)
888
889
- Indexing with a list of strings representing datetimes failed on :class:`DatetimeIndex` or :class:`PeriodIndex`(:issue:`11278`)
889
890
- Bug in :meth:`Series.at` when used with a :class:`MultiIndex` would raise an exception on valid inputs (:issue:`26989`)
891
+
- Bug in :meth:`Series.loc` when used with a :class:`MultiIndex` would raise an IndexingError when accessing a None value (:issue:`34318`)
890
892
891
893
Missing
892
894
^^^^^^^
@@ -974,6 +976,7 @@ Groupby/resample/rolling
974
976
to the input DataFrame is inconsistent. An internal heuristic to detect index mutation would behave differently for equal but not identical
975
977
indices. In particular, the result index shape might change if a copy of the input would be returned.
976
978
The behaviour now is consistent, independent of internal heuristics. (:issue:`31612`, :issue:`14927`, :issue:`13056`)
979
+
- Bug in :meth:`SeriesGroupBy.agg` where any column name was accepted in the named aggregation of ``SeriesGroupBy`` previously. The behaviour now allows only ``str`` and callables else would raise ``TypeError``. (:issue:`34422`)
977
980
978
981
Reshaping
979
982
^^^^^^^^^
@@ -1002,6 +1005,7 @@ Reshaping
1002
1005
- Bug in :func:`concat` was not allowing for concatenation of ``DataFrame`` and ``Series`` with duplicate keys (:issue:`33654`)
1003
1006
- Bug in :func:`cut` raised an error when non-unique labels (:issue:`33141`)
1004
1007
- Ensure only named functions can be used in :func:`eval()` (:issue:`32460`)
1008
+
- Bug in :func:`Dataframe.aggregate` and :func:`Series.aggregate` was causing recursive loop in some cases (:issue:`34224`)
1005
1009
- Fixed bug in :func:`melt` where melting MultiIndex columns with ``col_level`` > 0 would raise a ``KeyError`` on ``id_vars`` (:issue:`34129`)
0 commit comments