Skip to content

Commit d8f0ffe

Browse files
[3.14] gh-106318: Fix incorrectly rendered code block in str.isalnum() docs (GH-144718) (GH-144730)
(cherry picked from commit f912c83) Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
1 parent 96c9394 commit d8f0ffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/stdtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2090,7 +2090,7 @@ expression support in the :mod:`re` module).
20902090
Return ``True`` if all characters in the string are alphanumeric and there is at
20912091
least one character, ``False`` otherwise. A character ``c`` is alphanumeric if one
20922092
of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
2093-
``c.isdigit()``, or ``c.isnumeric()``. For example::
2093+
``c.isdigit()``, or ``c.isnumeric()``. For example:
20942094

20952095
.. doctest::
20962096

0 commit comments

Comments
 (0)