Skip to content

Commit b4701a6

Browse files
authored
DOC: suppress some doc build warnings (pandas-dev#15958)
1 parent b4c6fc1 commit b4701a6

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

doc/source/dsintro.rst

+1
Original file line numberDiff line numberDiff line change
@@ -979,6 +979,7 @@ Convert to a MultiIndex DataFrame
979979
Alternatively, one can convert to an xarray ``DataArray``.
980980

981981
.. ipython:: python
982+
:okwarning:
982983
983984
p.to_xarray()
984985

doc/source/io.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4487,6 +4487,7 @@ See the `Full Documentation <https://github.com/wesm/feather>`__
44874487
Write to a feather file.
44884488

44894489
.. ipython:: python
4490+
:okwarning:
44904491
44914492
df.to_feather('example.feather')
44924493

doc/source/whatsnew/v0.13.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,11 +357,11 @@ HDFStore API Changes
357357
.. ipython:: python
358358

359359
path = 'test.h5'
360-
df = DataFrame(randn(10,2))
360+
df = pd.DataFrame(np.random.randn(10,2))
361361
df.to_hdf(path,'df_table',format='table')
362362
df.to_hdf(path,'df_table2',append=True)
363363
df.to_hdf(path,'df_fixed')
364-
with get_store(path) as store:
364+
with pd.HDFStore(path) as store:
365365
print(store)
366366

367367
.. ipython:: python

0 commit comments

Comments
 (0)