Skip to content
Merged
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
9 changes: 5 additions & 4 deletions Doc/library/re.rst
Original file line number Diff line number Diff line change
Expand Up @@ -523,10 +523,11 @@ character ``'$'``.

``\w``
For Unicode (str) patterns:
Matches Unicode word characters; this includes most characters
that can be part of a word in any language, as well as numbers and
the underscore. If the :const:`ASCII` flag is used, only
``[a-zA-Z0-9_]`` is matched.
Matches Unicode word characters; this includes most alphanumeric characters
as well as the underscore. In Unicode, alphanumeric characters are defined
to be the general categories L + N
(see `Unicode General Category Values <https://unicode.org/reports/tr44/#General_Category_Values>`_).
If the :const:`ASCII` flag is used, only ``[a-zA-Z0-9_]`` is matched.

For 8-bit (bytes) patterns:
Matches characters considered alphanumeric in the ASCII character set;
Expand Down