> -----Original Message-----
> From: Intel-wired-lan <[email protected]> On Behalf
> Of Mauro Carvalho Chehab
> Sent: Wednesday, January 28, 2026 5:50 PM
> To: Jonathan Corbet <[email protected]>; Linux Doc Mailing List <linux-
> [email protected]>
> Cc: Mauro Carvalho Chehab <[email protected]>;
> [email protected]; [email protected]; linux-
> [email protected]; [email protected]; Peter Zijlstra
> <[email protected]>; Randy Dunlap <[email protected]>; Stephen
> Rothwell <[email protected]>
> Subject: [Intel-wired-lan] [PATCH v2 01/25] docs: kdoc_re: add support
> for groups()
>
> Add an equivalent to re groups() method.
> This is useful on debug messages.
>
> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
> Acked-by: Randy Dunlap <[email protected]>
> Tested-by: Randy Dunlap <[email protected]>
> ---
> tools/lib/python/kdoc/kdoc_re.py | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/tools/lib/python/kdoc/kdoc_re.py
> b/tools/lib/python/kdoc/kdoc_re.py
> index 2816bd9f90f8..19e777e2c97e 100644
> --- a/tools/lib/python/kdoc/kdoc_re.py
> +++ b/tools/lib/python/kdoc/kdoc_re.py
> @@ -106,6 +106,13 @@ class KernRe:
>
> return self.last_match.group(num)
>
> + def groups(self):
> + """
> + Returns the group results of the last match
> + """
> +
> + return self.last_match.groups()
> +
>
> class NestedMatch:
> """
> --
> 2.52.0
Reviewed-by: Aleksandr Loktionov <[email protected]>