Skip to content

Commit b7ae0bc

Browse files
committed
revert combine change
1 parent 125ca0b commit b7ae0bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2185,7 +2185,7 @@ def _binop(self, other, func, level=None, fill_value=None):
21852185
result.name = None
21862186
return result
21872187

2188-
def combine(self, other, func, fill_value=None):
2188+
def combine(self, other, func, fill_value=np.nan):
21892189
"""
21902190
Perform elementwise binary operation on two Series using given function
21912191
with optional fill value when an index is missing from one Series or

0 commit comments

Comments
 (0)