Re: [PATCH 11/28] qapi: Move uppercase rejection to check_name_lower()

2021-03-23 Thread John Snow
On 3/23/21 5:40 AM, Markus Armbruster wrote: check_name_lower() is the only user of check_name_str() using permit_upper=False. Move the associated code from check_name_str() to check_name_lower(), and drop the parameter. Signed-off-by: Markus Armbruster Reviewed-by: John Snow --- script

Re: [PATCH 11/28] qapi: Move uppercase rejection to check_name_lower()

2021-03-23 Thread Eric Blake
On 3/23/21 4:40 AM, Markus Armbruster wrote: > check_name_lower() is the only user of check_name_str() using > permit_upper=False. Move the associated code from check_name_str() to > check_name_lower(), and drop the parameter. > > Signed-off-by: Markus Armbruster > --- > scripts/qapi/expr.py |

[PATCH 11/28] qapi: Move uppercase rejection to check_name_lower()

2021-03-23 Thread Markus Armbruster
check_name_lower() is the only user of check_name_str() using permit_upper=False. Move the associated code from check_name_str() to check_name_lower(), and drop the parameter. Signed-off-by: Markus Armbruster --- scripts/qapi/expr.py | 15 +++ 1 file changed, 7 insertions(+), 8 dele