Skip to content

Commit

Permalink
feat(python)!: Change null_equal default to True for `Series.seri…
Browse files Browse the repository at this point in the history
…es_equal` (#5051)
  • Loading branch information
matteosantama committed Nov 23, 2022
1 parent 63907fc commit f540c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/internals/series/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2352,7 +2352,7 @@ def explode(self) -> Series:
"""

def series_equal(
self, other: Series, null_equal: bool = False, strict: bool = False
self, other: Series, null_equal: bool = True, strict: bool = False
) -> bool:
"""
Check if series is equal with another Series.
Expand Down

0 comments on commit f540c94

Please sign in to comment.