From ed91045c7623e5cf0e57c10bbb226edaa7577bd8 Mon Sep 17 00:00:00 2001 From: Kaiqi Dong Date: Tue, 22 Jan 2019 17:18:26 +0100 Subject: [PATCH] shorten docstring --- pandas/core/reshape/merge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pandas/core/reshape/merge.py b/pandas/core/reshape/merge.py index f0848214119e16..2b18321b666ad5 100644 --- a/pandas/core/reshape/merge.py +++ b/pandas/core/reshape/merge.py @@ -165,8 +165,7 @@ def merge_ordered(left, right, on=None, `left` and `right` respectively. Pass a value of `None` instead of a string to indicate that the column name from `left` or `right` should be left as-is, with no suffix. At least one of the - values must not be None. A combination of `''` and `None` is will - raise error for columns which type is string + values must not be None. how : {'left', 'right', 'outer', 'inner'}, default 'outer' * left: use only keys from left frame (SQL: left outer join) * right: use only keys from right frame (SQL: right outer join)