From: Markus Armbruster Date: Tue, 31 Aug 2021 12:38:06 +0000 (+0200) Subject: qapi: Use re.fullmatch() where appropriate X-Git-Tag: v6.2.0-rc0~117^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=555dd1aaa6b654d0ad62da9660c32835ab493678;p=thirdparty%2Fqemu.git qapi: Use re.fullmatch() where appropriate Signed-off-by: Markus Armbruster Message-Id: <20210831123809.1107782-10-armbru@redhat.com> Reviewed-by: Marc-André Lureau --- diff --git a/scripts/qapi/expr.py b/scripts/qapi/expr.py index 019f4c97aaf..9e2aa1d43a0 100644 --- a/scripts/qapi/expr.py +++ b/scripts/qapi/expr.py @@ -275,7 +275,7 @@ def check_if(expr: _JSONObject, info: QAPISourceInfo, source: str) -> None: def _check_if(cond: Union[str, object]) -> None: if isinstance(cond, str): - if not re.match(r'^[A-Z][A-Z0-9_]*$', cond): + if not re.fullmatch(r'[A-Z][A-Z0-9_]*', cond): raise QAPISemError( info, "'if' condition '%s' of %s is not a valid identifier"