Skip to content

Commit d365957

Browse files
committed
DOC: add to_numeric to api.rst
TST: fix odd failing get_data from google test
1 parent 5049b5e commit d365957

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

doc/source/api.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,14 @@ Top-level missing data
164164
isnull
165165
notnull
166166

167+
Top-level conversions
168+
~~~~~~~~~~~~~~~~~~~~~
169+
170+
.. autosummary::
171+
:toctree: generated/
172+
173+
to_numeric
174+
167175
Top-level dealing with datetimelike
168176
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
169177

pandas/io/tests/test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_get_multi1(self):
9292
for locale in self.locales:
9393
sl = ['AAPL', 'AMZN', 'GOOG']
9494
with tm.set_locale(locale):
95-
pan = web.get_data_google(sl, '2012')
95+
pan = web.get_data_google(sl, '2012', '2013')
9696
ts = pan.Close.GOOG.index[pan.Close.AAPL < pan.Close.GOOG]
9797
if (hasattr(pan, 'Close') and hasattr(pan.Close, 'GOOG') and
9898
hasattr(pan.Close, 'AAPL')):

0 commit comments

Comments
 (0)