File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -151,9 +151,9 @@ following functions:
151151 that is, it has the ``XID_Start `` property. Return ``False `` otherwise.
152152 For example::
153153
154- >>> unicodedata.isidstart ('S')
154+ >>> unicodedata.isxidstart ('S')
155155 True
156- >>> unicodedata.isidstart ('0')
156+ >>> unicodedata.isxidstart ('0')
157157 False
158158
159159 .. versionadded :: next
@@ -166,9 +166,9 @@ following functions:
166166 that is, it has the ``XID_Continue `` property. Return ``False `` otherwise.
167167 For example::
168168
169- >>> unicodedata.isidcontinue ('S')
169+ >>> unicodedata.isxidcontinue ('S')
170170 True
171- >>> unicodedata.isidcontinue (' ')
171+ >>> unicodedata.isxidcontinue (' ')
172172 False
173173
174174 .. versionadded :: next
Original file line number Diff line number Diff line change @@ -768,7 +768,7 @@ unicodedata
768768
769769* The Unicode database has been updated to Unicode 17.0.0.
770770
771- * Add :func: `unicodedata.isidstart ` and :func: `unicodedata.isidcontinue `
771+ * Add :func: `unicodedata.isxidstart ` and :func: `unicodedata.isxidcontinue `
772772 functions.
773773 (Contributed by Stan Ulbrych in :gh: `129117 `.)
774774
Original file line number Diff line number Diff line change 1- :mod: `unicodedata `: Add :func: `~unicodedata.isidstart ` and
2- :func: `~unicodedata.isidcontinue ` functions.
1+ :mod: `unicodedata `: Add :func: `~unicodedata.isxidstart ` and
2+ :func: `~unicodedata.isxidcontinue ` functions.
You can’t perform that action at this time.
0 commit comments