Skip to content

Commit a3c1059

Browse files
committed
DOC: Closes Issue pandas-dev#24240 Fix Flake8 issues /doc/source/whatsnew/v0.14.*
Update the error text in the documentation as directed and fixed formatting.
1 parent b395065 commit a3c1059

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

doc/source/whatsnew/v0.14.0.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ v0.14.0 (May 31 , 2014)
55

66
{{ header }}
77

8-
.. ipython:: python
9-
:suppress:
10-
118

129
This is a major release from 0.13.1 and includes a small number of API changes, several new features,
1310
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all
@@ -219,8 +216,9 @@ API changes
219216
>>> x = pd.Series(np.random.rand(10) > 0.5)
220217
>>> y = True
221218
>>> x + y # warning generated: should do x | y instead
219+
UserWarning: evaluating in Python space because the '+' operator is not
220+
supported by numexpr for the bool dtype, use '|' instead
222221
>>> x / y # this raises because it doesn't make sense
223-
224222
NotImplementedError: operator '/' not implemented for bool dtypes
225223
226224
- In ``HDFStore``, ``select_as_multiple`` will always raise a ``KeyError``, when a key or the selector is not found (:issue:`6177`)

doc/source/whatsnew/v0.14.1.rst

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ v0.14.1 (July 11, 2014)
55

66
{{ header }}
77

8-
.. ipython:: python
9-
:suppress:
10-
118

129
This is a minor release from 0.14.0 and includes a small number of API changes, several new features,
1310
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all

0 commit comments

Comments
 (0)