Skip to content

Commit

Permalink
fix series docs
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher committed Dec 27, 2024
1 parent bff1a9e commit dae704c
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions py-polars/polars/series/string.py
Original file line number Diff line number Diff line change
Expand Up @@ -2235,26 +2235,13 @@ def normalize(self, form: UnicodeForm = "NFC") -> Series:
>>> s.str.normalize("NFC")
shape: (2,)
Series: '' [str]
>>> s = pl.Series(["01²", "KADOKAWA"])
>>> s.str.normalize("NFC")
shape: (2,)
Series: '' [str]
[
"01²"
"KADOKAWA"
]
>>> s.str.normalize("NFKC")
shape: (2,)
Series: '' [str]
[
"012"
"KADOKAWA"
"01²"
"KADOKAWA"
]
>>> s.str.normalize("NFKC")
shape: (2,)
Series: '' [str]
[
"012"
"KADOKAWA"
Expand Down

0 comments on commit dae704c

Please sign in to comment.