Skip to content

Commit a0d4730

Browse files
DOC: combine regressions in section in v1.0.1 whatsnew (pandas-dev#31607)
* DOC: combine regressions in section in v1.0.1 whatsnew * move more * label * remove bug fixes subsections * fix rst
1 parent 78b7079 commit a0d4730

File tree

1 file changed

+22
-105
lines changed

1 file changed

+22
-105
lines changed

doc/source/whatsnew/v1.0.1.rst

Lines changed: 22 additions & 105 deletions
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,121 +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`)
27-
28-
Categorical
29-
^^^^^^^^^^^
3044

31-
-
32-
-
45+
**Datetimelike**
3346

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-
^^^^^^^^^
41-
42-
-
43-
-
49+
**Numeric**
4450

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-
-
81-
-
82-
- Bug where assigning to a :class:`Series` using a IntegerArray / BooleanArray as a mask would raise ``TypeError`` (:issue:`31446`)
83-
84-
Missing
85-
^^^^^^^
86-
87-
-
88-
-
89-
90-
MultiIndex
91-
^^^^^^^^^^
92-
93-
-
94-
-
95-
96-
I/O
97-
^^^
98-
99-
- Fixed regression in :meth:`~DataFrame.to_csv` where specifying an ``na_rep`` might truncate the values written (:issue:`31447`)
100-
-
101-
-
102-
103-
Plotting
104-
^^^^^^^^
54+
**Plotting**
10555

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

136-
Other
137-
^^^^^
138-
- Regression fixed in objTOJSON.c fix return-type warning (:issue:`31463`)
139-
- 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`)
140-
-
14158

14259
.. ---------------------------------------------------------------------------
14360

0 commit comments

Comments
 (0)