[3.14] gh-106318: Fix incorrectly rendered code block in str.isalnum() docs (GH-144718) (GH-144730)

(cherry picked from commit f912c835b9)

Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
This commit is contained in:
Miss Islington (bot) 2026-03-03 13:12:36 +01:00 committed by GitHub
parent 96c9394c8a
commit d8f0ffebef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2090,7 +2090,7 @@ expression support in the :mod:`re` module).
Return ``True`` if all characters in the string are alphanumeric and there is at
least one character, ``False`` otherwise. A character ``c`` is alphanumeric if one
of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
``c.isdigit()``, or ``c.isnumeric()``. For example::
``c.isdigit()``, or ``c.isnumeric()``. For example:
.. doctest::