Skip to content

Commit a9d2450

Browse files
DOC: combine regressions in section in v1.0.1 whatsnew (#31607)
* DOC: combine regressions in section in v1.0.1 whatsnew * move more * label * remove bug fixes subsections * fix rst
1 parent c815ffa commit a9d2450

File tree

1 file changed

+22
-107
lines changed

1 file changed

+22
-107
lines changed

doc/source/whatsnew/v1.0.1.rst

+22-107
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@ including other versions of pandas.
1010

1111
.. ---------------------------------------------------------------------------
1212
13+
.. _whatsnew_101.regressions:
14+
15+
Fixed regressions
16+
~~~~~~~~~~~~~~~~~
17+
18+
- Fixed regression in :class:`DataFrame` setting values with a slice (e.g. ``df[-4:] = 1``) indexing by label instead of position (:issue:`31469`)
19+
- Fixed regression when indexing a ``Series`` or ``DataFrame`` indexed by ``DatetimeIndex`` with a slice containg a :class:`datetime.date` (:issue:`31501`)
20+
- Fixed regression in :class:`Series` multiplication when multiplying a numeric :class:`Series` with >10000 elements with a timedelta-like scalar (:issue:`31457`)
21+
- Fixed regression in :meth:`GroupBy.apply` if called with a function which returned a non-pandas non-scalar object (e.g. a list or numpy array) (:issue:`31441`)
22+
- Fixed regression in :meth:`to_datetime` when parsing non-nanosecond resolution datetimes (:issue:`31491`)
23+
- Fixed regression in :meth:`~DataFrame.to_csv` where specifying an ``na_rep`` might truncate the values written (:issue:`31447`)
24+
- Fixed regression where setting :attr:`pd.options.display.max_colwidth` was not accepting negative integer. In addition, this behavior has been deprecated in favor of using ``None`` (:issue:`31532`)
25+
- Fixed regression in objTOJSON.c fix return-type warning (:issue:`31463`)
26+
- Fixed regression in :meth:`qcut` when passed a nullable integer. (:issue:`31389`)
27+
- Fixed regression in assigning to a :class:`Series` using a nullable integer dtype (:issue:`31446`)
28+
29+
.. ---------------------------------------------------------------------------
30+
1331
.. _whatsnew_101.deprecations:
1432

1533
Deprecations
@@ -23,123 +41,20 @@ Deprecations
2341

2442
Bug fixes
2543
~~~~~~~~~
26-
- Bug in :meth:`GroupBy.apply` was raising ``TypeError`` if called with function which returned a non-pandas non-scalar object (e.g. a list) (:issue:`31441`)
2744

28-
Categorical
29-
^^^^^^^^^^^
45+
**Datetimelike**
3046

31-
-
32-
-
33-
34-
Datetimelike
35-
^^^^^^^^^^^^
36-
- Fixed regression in :meth:`to_datetime` when parsing non-nanosecond resolution datetimes (:issue:`31491`)
3747
- Fixed bug in :meth:`to_datetime` raising when ``cache=True`` and out-of-bound values are present (:issue:`31491`)
3848

39-
Timedelta
40-
^^^^^^^^^
49+
**Numeric**
4150

42-
-
43-
-
44-
45-
Timezones
46-
^^^^^^^^^
47-
48-
-
49-
-
50-
51-
52-
Numeric
53-
^^^^^^^
5451
- Bug in dtypes being lost in ``DataFrame.__invert__`` (``~`` operator) with mixed dtypes (:issue:`31183`)
55-
- Bug in :class:`Series` multiplication when multiplying a numeric :class:`Series` with >10000 elements with a timedelta-like scalar (:issue:`31467`)
56-
-
57-
58-
Conversion
59-
^^^^^^^^^^
60-
61-
-
62-
-
63-
64-
Strings
65-
^^^^^^^
66-
67-
-
68-
-
69-
70-
71-
Interval
72-
^^^^^^^^
73-
74-
-
75-
-
52+
and for extension-array backed ``Series`` and ``DataFrame`` (:issue:`23087`)
7653

77-
Indexing
78-
^^^^^^^^
79-
80-
- Fixed regression when indexing a ``Series`` or ``DataFrame`` indexed by ``DatetimeIndex`` with a slice containg a :class:`datetime.date` (:issue:`31501`)
81-
- Fixed regression in :class:`DataFrame` setting values with a slice (e.g. ``df[-4:] = 1``) indexing by label instead of position (:issue:`31469`)
82-
-
83-
-
84-
- Bug where assigning to a :class:`Series` using a IntegerArray / BooleanArray as a mask would raise ``TypeError`` (:issue:`31446`)
85-
86-
Missing
87-
^^^^^^^
88-
89-
-
90-
-
91-
92-
MultiIndex
93-
^^^^^^^^^^
94-
95-
-
96-
-
97-
98-
I/O
99-
^^^
100-
101-
- Fixed regression in :meth:`~DataFrame.to_csv` where specifying an ``na_rep`` might truncate the values written (:issue:`31447`)
102-
-
103-
-
104-
105-
Plotting
106-
^^^^^^^^
54+
**Plotting**
10755

10856
- Plotting tz-aware timeseries no longer gives UserWarning (:issue:`31205`)
109-
-
110-
111-
Groupby/resample/rolling
112-
^^^^^^^^^^^^^^^^^^^^^^^^
113-
114-
-
115-
-
116-
117-
118-
Reshaping
119-
^^^^^^^^^
120-
121-
-
122-
-
123-
124-
Sparse
125-
^^^^^^
126-
127-
-
128-
-
129-
130-
ExtensionArray
131-
^^^^^^^^^^^^^^
132-
133-
- Bug in dtype being lost in ``__invert__`` (``~`` operator) for extension-array backed ``Series`` and ``DataFrame`` (:issue:`23087`)
134-
- Bug where :meth:`qcut` would raise when passed a nullable integer. (:issue:`31389`)
135-
-
136-
13757

138-
Other
139-
^^^^^
140-
- Regression fixed in objTOJSON.c fix return-type warning (:issue:`31463`)
141-
- Fixed a regression where setting :attr:`pd.options.display.max_colwidth` was not accepting negative integer. In addition, this behavior has been deprecated in favor of using ``None`` (:issue:`31532`)
142-
-
14358

14459
.. ---------------------------------------------------------------------------
14560

0 commit comments

Comments
 (0)