Skip to content

Commit 9ef7ebb

Browse files
committed
DOC: avoid warnings on http links
1 parent 910895d commit 9ef7ebb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pandas/core/frame.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ def to_gbq(self, destination_table, project_id=None, chunksize=10000,
801801
into a default chunk size of 10,000. Failures return the complete error
802802
response which can be quite long depending on the size of the insert.
803803
There are several important limitations of the Google streaming API
804-
which are `here <https://developers.google.com/bigquery/streaming-data-into-bigquery>`_
804+
which are `here <https://developers.google.com/bigquery/streaming-data-into-bigquery>`__
805805
806806
Parameters
807807
----------
@@ -1488,7 +1488,7 @@ def to_latex(self, buf=None, columns=None, col_space=None, colSpace=None,
14881488
Make the row labels bold in the output
14891489
column_format : str, default None
14901490
The columns format as specified in `LaTeX table format
1491-
<https://en.wikibooks.org/wiki/LaTeX/Tables>`_ e.g 'rcl' for 3 columns
1491+
<https://en.wikibooks.org/wiki/LaTeX/Tables>`__ e.g 'rcl' for 3 columns
14921492
longtable : boolean, default False
14931493
Use a longtable environment instead of tabular. Requires adding
14941494
a \\usepackage{longtable} to your LaTeX preamble.
@@ -2113,7 +2113,7 @@ def select_dtypes(self, include=None, exclude=None):
21132113
* To select strings you must use the ``object`` dtype, but note that
21142114
this will return *all* object dtype columns
21152115
* See the `numpy dtype hierarchy
2116-
<http://docs.scipy.org/doc/numpy/reference/arrays.scalars.html>`_
2116+
<http://docs.scipy.org/doc/numpy/reference/arrays.scalars.html>`__
21172117
* To select Pandas categorical dtypes, use 'category'
21182118
21192119
Examples

pandas/core/generic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2993,8 +2993,8 @@ def interpolate(self, method='linear', axis=0, limit=None, inplace=False,
29932993
wrappers around the scipy interpolation methods of similar
29942994
names. These use the actual numerical values of the index. See
29952995
the scipy documentation for more on their behavior
2996-
`here <http://docs.scipy.org/doc/scipy/reference/interpolate.html#univariate-interpolation>`_
2997-
`and here <http://docs.scipy.org/doc/scipy/reference/tutorial/interpolate.html>`_
2996+
`here <http://docs.scipy.org/doc/scipy/reference/interpolate.html#univariate-interpolation>`__
2997+
`and here <http://docs.scipy.org/doc/scipy/reference/tutorial/interpolate.html>`__
29982998
29992999
axis : {0, 1}, default 0
30003000
* 0: fill column-by-column

0 commit comments

Comments
 (0)