class typing.re
Wrapper namespace for regular expression matching types.
This defines the type aliases Pattern
and Match
which correspond to the return types from re.compile()
and re.match()
. These types (and the corresponding functions) are generic in AnyStr
and can be made specific by writing Pattern[str]
, Pattern[bytes]
, Match[str]
, or Match[bytes]
.
Please login to continue.