Skip to content

Commit 36063e5

Browse files
committed
DOC: minor v0.14.0 changes
1 parent 12a585c commit 36063e5

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

doc/source/v0.14.0.txt

+12-13
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,25 @@ API changes
190190
to a non-unique item in the ``Index`` (previously raised a ``KeyError``).
191191
- drop unused order argument from ``Series.sort``; args now in the same orders as ``Series.order``;
192192
add ``na_position`` arg to conform to ``Series.order`` (:issue:`6847`)
193-
- default sorting algorithm for ``Series.order`` is not ``quicksort``, to conform with ``Series.sort``
193+
- default sorting algorithm for ``Series.order`` is now ``quicksort``, to conform with ``Series.sort``
194194
(and numpy defaults)
195195
- add ``inplace`` keyword to ``Series.order/sort`` to make them inverses (:issue:`6859`)
196196
- accept ``TextFileReader`` in ``concat``, which was affecting a common user idiom (:issue:`6583`), this was a regression
197197
from 0.13.1
198198
- Added ``factorize`` functions to ``Index`` and ``Series`` to get indexer and unique values (:issue:`7090`)
199199
- ``describe`` on a DataFrame with a mix of Timestamp and string like objects returns a different Index (:issue:`7088`).
200200
Previously the index was unintentionally sorted.
201+
- arithmetic operations with **only** ``bool`` dtypes now raise an error
202+
(:issue:`7011`, :issue:`6762`, :issue:`7015`)
203+
204+
.. code-block:: python
205+
206+
x = pd.Series(np.random.rand(10) > 0.5)
207+
y = True
208+
x * y
209+
210+
# this now raises for arith ops like ``+``, ``*``, etc.
211+
NotImplementedError: operator '*' not implemented for bool dtypes
201212

202213
.. _whatsnew_0140.display:
203214

@@ -228,18 +239,6 @@ Display Changes
228239
length of the series (:issue:`7101`)
229240
- Fixed a bug in the HTML repr of a truncated Series or DataFrame not showing the class name with the
230241
`large_repr` set to 'info' (:issue:`7105`)
231-
- arithmetic operations with **only** ``bool`` dtypes now raise an error
232-
(:issue:`7011`, :issue:`6762`, :issue:`7015`)
233-
234-
.. code-block:: python
235-
236-
x = pd.Series(np.random.rand(10) > 0.5)
237-
y = True
238-
x * y
239-
240-
# this now raises for arith ops like ``+``, ``*``, etc.
241-
NotImplementedError: operator '*' not implemented for bool dtypes
242-
243242

244243
.. _whatsnew_0140.groupby:
245244

0 commit comments

Comments
 (0)