Commit 3a19e542 authored by Georg Brandl's avatar Georg Brandl

Closes #14250: regex.flags has not only explicit flags but also implicit flags...

Closes #14250: regex.flags has not only explicit flags but also implicit flags and those from the pattern
parent 557a3ec9
......@@ -784,8 +784,9 @@ attributes:
.. attribute:: regex.flags
The flags argument used when the RE object was compiled, or ``0`` if no flags
were provided.
The regex matching flags. This is a combination of the flags given to
:func:`.compile`, any ``(?...)`` inline flags in the pattern, and implicit
flags such as :data:`UNICODE` if the pattern is a Unicode string.
.. attribute:: regex.groups
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment