From 9f3f01212391d4db343fb3eabcdb17a8705669e1 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Thu, 28 Nov 2024 13:59:06 +0100 Subject: [PATCH] docs(python): Remove note about guaranteed left join order (#20048) --- py-polars/polars/dataframe/frame.py | 2 -- py-polars/polars/lazyframe/frame.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/py-polars/polars/dataframe/frame.py b/py-polars/polars/dataframe/frame.py index 26ead13b2b33..5c09409d4b4e 100644 --- a/py-polars/polars/dataframe/frame.py +++ b/py-polars/polars/dataframe/frame.py @@ -7106,8 +7106,6 @@ def join( * *anti* Returns rows from the left table that have no match in the right table. - .. note:: - A left join preserves the row order of the left DataFrame. left_on Name(s) of the left join column(s). right_on diff --git a/py-polars/polars/lazyframe/frame.py b/py-polars/polars/lazyframe/frame.py index 4a9591ac89ed..7419308fdd6f 100644 --- a/py-polars/polars/lazyframe/frame.py +++ b/py-polars/polars/lazyframe/frame.py @@ -4418,8 +4418,6 @@ def join( * *anti* Returns rows from the left table that have no match in the right table. - .. note:: - A left join preserves the row order of the left DataFrame. left_on Join column of the left DataFrame. right_on