Skip to content

Commit 1efeb8c

Browse files
adorilsonhugovk
andauthored
Update Doc/library/stdtypes.rst
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent fc87e3c commit 1efeb8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/stdtypes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2161,9 +2161,9 @@ expression support in the :mod:`re` module).
21612161

21622162
>>> '0123456789'.isnumeric()
21632163
True
2164-
>>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digit zero to nine
2164+
>>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digit zero to nine
21652165
True
2166-
>>> ''.isnumeric() # Vulgar fraction one fifth
2166+
>>> ''.isnumeric() # Vulgar fraction one fifth
21672167
True
21682168
>>> '²'.isdecimal(), '²'.isdigit(), '²'.isnumeric()
21692169
(False, True, True)

0 commit comments

Comments
 (0)