Skip to content

Commit 56aa391

Browse files
update of docstring
1 parent 46c4019 commit 56aa391

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/core/reshape/merge.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ def merge_ordered(left, right, on=None,
161161
Interpolation method for data
162162
suffixes : 2-length sequence (tuple, list, ...)
163163
Suffix to apply to overlapping column names in the left and right
164-
side, respectively
164+
side, respectively. Except for tuple of (str, str), it also allows
165+
tuple of (None, str) or (str, None)
165166
how : {'left', 'right', 'outer', 'inner'}, default 'outer'
166167
* left: use only keys from left frame (SQL: left outer join)
167168
* right: use only keys from right frame (SQL: right outer join)
@@ -488,9 +489,7 @@ def __init__(self, left, right, how='inner', on=None,
488489
self.right_on = com.maybe_make_list(right_on)
489490

490491
self.copy = copy
491-
492492
self.suffixes = suffixes
493-
494493
self.sort = sort
495494

496495
self.left_index = left_index

0 commit comments

Comments
 (0)