Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/source/v0.10.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ perform queries on a table, by passing a list to ``data_columns``
Retrieving unique values in an indexable or data column.

.. ipython:: python
:okwarning:

import warnings
with warnings.catch_warnings():
Expand Down
2 changes: 2 additions & 0 deletions doc/source/v0.12.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ I/O Enhancements
You can use ``pd.read_html()`` to read the output from ``DataFrame.to_html()`` like so

.. ipython :: python
:okwarning:

df = DataFrame({'a': range(3), 'b': list('abc')})
print(df)
Expand Down Expand Up @@ -252,6 +253,7 @@ I/O Enhancements
store when iteration is finished. This is only for *tables*

.. ipython:: python
:okwarning:

path = 'store_iterator.h5'
DataFrame(randn(10,2)).to_hdf(path,'df',table=True)
Expand Down
1 change: 1 addition & 0 deletions doc/source/v0.13.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ API changes
The following warning / exception will show if this is attempted.

.. ipython:: python
:okwarning:

dfc.loc[0]['A'] = 1111

Expand Down