Skip to content

Commit da3b069

Browse files
committed
More warnings
1 parent e2dfa58 commit da3b069

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

doc/source/whatsnew/v0.15.2.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Other enhancements:
163163
p.all()
164164

165165
- Added support for ``utcfromtimestamp()``, ``fromtimestamp()``, and ``combine()`` on `Timestamp` class (:issue:`5351`).
166-
- Added Google Analytics (`pandas.io.ga`) basic documentation (:issue:`8835`). See `here<http://pandas.pydata.org/pandas-docs/version/0.15.2/remote_data.html#remote-data-ga>`__.
166+
- Added Google Analytics (`pandas.io.ga`) basic documentation (:issue:`8835`). See `here <http://pandas.pydata.org/pandas-docs/version/0.15.2/remote_data.html#remote-data-ga>`__.
167167
- ``Timedelta`` arithmetic returns ``NotImplemented`` in unknown cases, allowing extensions by custom classes (:issue:`8813`).
168168
- ``Timedelta`` now supports arithemtic with ``numpy.ndarray`` objects of the appropriate dtype (numpy 1.8 or newer only) (:issue:`8884`).
169169
- Added ``Timedelta.to_timedelta64()`` method to the public API (:issue:`8884`).

doc/source/whatsnew/v0.19.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ contained the values ``[0, 3]``.
216216
**New behavior**:
217217

218218
.. ipython:: python
219+
:okwarning:
219220

220221
pd.read_csv(StringIO(data), names=names)
221222

doc/source/whatsnew/v0.20.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1375,6 +1375,7 @@ Convert to a MultiIndex DataFrame
13751375
Convert to an xarray DataArray
13761376

13771377
.. ipython:: python
1378+
:okwarning:
13781379

13791380
p.to_xarray()
13801381

pandas/core/config_init.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,9 @@ def table_schema_cb(key):
392392
cf.register_option('sim_interactive', False, tc_sim_interactive_doc)
393393

394394
use_inf_as_null_doc = """
395-
use_inf_as_null had been deprecated and will be removed in a future version.
396-
Use `use_inf_as_na` instead.
395+
: boolean
396+
use_inf_as_null had been deprecated and will be removed in a future
397+
version. Use `use_inf_as_na` instead.
397398
"""
398399

399400
use_inf_as_na_doc = """

0 commit comments

Comments
 (0)