Skip to content

Commit

Permalink
Re-word method description per @mcrumiller
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiewooster committed Jun 19, 2024
1 parent b7fd931 commit f3b9344
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions py-polars/polars/expr/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -5008,8 +5008,10 @@ def eq_missing(self, other: Any) -> Self:
Equality operator where null is treated as a distinct value.
This differs from default `eq` where null values are propagated.
With this method, `None == None` returns `True` instead of `None`,
and `x == None` returns `False` instead of `None` where `x` is not `None`.
Equality operator where null is treated as a distinct value.
With this method, null is equal to null and is not equal to any other value.
Parameters
----------
Expand Down

0 comments on commit f3b9344

Please sign in to comment.