These are the changes in pandas 1.0.1. See :ref:`release` for a full changelog including other versions of pandas.
{{ header }}
- Bug in dtypes being lost in
DataFrame.__invert__
(~
operator) with mixed dtypes (:issue:`31183`)
- Fixed regression when indexing a
Series
orDataFrame
indexed byDatetimeIndex
with a slice containg a :class:`datetime.date` (:issue:`31501`) - Fixed regression in :class:`DataFrame` setting values with a slice (e.g.
df[-4:] = 1
) indexing by label instead of position (:issue:`31469`)
- Bug in dtype being lost in
__invert__
(~
operator) for extension-array backedSeries
andDataFrame
(:issue:`23087`)