Skip to content

Commit 5375ba3

Browse files
authored
fixed PEP8 and moved See Also above Examples
1 parent 4408eef commit 5375ba3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pandas/core/series.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
from __future__ import division
55

6-
# pylint: disable=E1101,E1103
6+
# pylint: disable=E1101,E1103combine
77
# pylint: disable=W0703,W0622,W0613,W0201
88

99
import warnings
@@ -2272,7 +2272,7 @@ def combine(self, other, func, fill_value=None):
22722272
selection for combined Series.
22732273
`fill_value` is assumed when value is missing from one
22742274
of the two objects being combined at some index.
2275-
2275+
22762276
Parameters
22772277
----------
22782278
other : Series or scalar
@@ -2287,7 +2287,12 @@ def combine(self, other, func, fill_value=None):
22872287
Returns
22882288
-------
22892289
Series
2290-
A combined Series object.
2290+
A combined Series object.
2291+
2292+
See Also
2293+
--------
2294+
Series.combine_first : Combine Series values, choosing the calling
2295+
Series' values first
22912296
22922297
Examples
22932298
--------
@@ -2317,11 +2322,6 @@ def combine(self, other, func, fill_value=None):
23172322
23182323
If `func` doesn't get a value from either of the two Series,
23192324
fill_value` is used.
2320-
2321-
See Also
2322-
--------
2323-
Series.combine_first : Combine Series values, choosing the calling
2324-
Series' values first
23252325
"""
23262326
if fill_value is None:
23272327
fill_value = na_value_for_dtype(self.dtype, compat=False)

0 commit comments

Comments
 (0)