Skip to content
Merged
Changes from all commits
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
8 changes: 6 additions & 2 deletions Doc/library/re.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -418,7 +418,8 @@ The special characters are:
+---------------------------------------+----------------------------------+

.. deprecated:: 3.11
Comment thread
hauntsaninja marked this conversation as resolved.
Group names containing non-ASCII characters in bytes patterns.
Group *name* containing characters outside the ASCII range
(``b'\x00'``-``b'\x7f'``) in :class:`bytes` patterns.

.. index:: single: (?P=; in regular expressions

Expand DownExpand Up@@ -494,6 +495,8 @@ The special characters are:

.. deprecated:: 3.11
Comment thread
hauntsaninja marked this conversation as resolved.
Group *id* containing anything except ASCII digits.
Group *name* containing characters outside the ASCII range
(``b'\x00'``-``b'\x7f'``) in :class:`bytes` replacement strings.


The special sequences consist of ``'\'`` and a character from the list below.
Expand DownExpand Up@@ -1015,7 +1018,8 @@ Functions

.. deprecated:: 3.11
Comment thread
hauntsaninja marked this conversation as resolved.
Group *id* containing anything except ASCII digits.
Group names containing non-ASCII characters in bytes replacement strings.
Group *name* containing characters outside the ASCII range
(``b'\x00'``-``b'\x7f'``) in :class:`bytes` replacement strings.


.. function:: subn(pattern, repl, string, count=0, flags=0)
Expand Down