Re: [PATCH v2 1/2] docs: python: abi_regex: catch the right exception for a bad regex
Jonathan Corbet <[email protected]>
| Newsgroups | org.kernel.vger.linux-cxl,org.kernel.vger.linux-doc |
|---|---|
| Message-ID | <[email protected]> |
Alison Schofield <[email protected]> writes: > While validating recent CXL ABI documentation updates with > get_abi.py, the 'undefined' mode was found to abort instead of > reporting undocumented ABI entries. > > Older Python releases raise re.error, while newer releases expose > re.PatternError. Catching the compatible re.error exception handles > both cases. > > Use re.error so the scan continues and reports the remaining > results. > > Signed-off-by: Alison Schofield <[email protected]> > --- > > Changes in v2: > - Update commit msg to say catches the compatible re.error (Sashiko) > - No code change > > > tools/lib/python/abi/abi_regex.py | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) Applied, thanks. jon