Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gh-106318: Fix typo in the str.isnumeric() method docs
  • Loading branch information
adorilson committed Feb 11, 2026
commit 60cbdd95dfaa76be7df336fbcaaf2341d3cbfe49
2 changes: 1 addition & 1 deletion Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2320,7 +2320,7 @@ expression support in the :mod:`re` module).

>>> '0123456789'.isnumeric()
True
>>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digit zero to nine
>>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digits zero to nine
True
>>> '⅕'.isnumeric() # Vulgar fraction one fifth
True
Expand Down