diff options
author | John Snow | 2020-10-09 18:15:35 +0200 |
---|---|---|
committer | Markus Armbruster | 2020-10-10 11:37:47 +0200 |
commit | 73951712b1cc87a5599c92920ad8d23352b82418 (patch) | |
tree | 0b9e667f3d9b6c128a0c79019fca1957b55ece6c /scripts/qapi | |
parent | qapi/common.py: delint with pylint (diff) | |
download | qemu-73951712b1cc87a5599c92920ad8d23352b82418.tar.gz qemu-73951712b1cc87a5599c92920ad8d23352b82418.tar.xz qemu-73951712b1cc87a5599c92920ad8d23352b82418.zip |
qapi/common.py: Replace one-letter 'c' variable
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20201009161558.107041-14-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts/qapi')
-rw-r--r-- | scripts/qapi/common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py index a417b6029c..338adedef4 100644 --- a/scripts/qapi/common.py +++ b/scripts/qapi/common.py @@ -30,14 +30,14 @@ def camel_to_upper(value): new_name = '' length = len(c_fun_str) for i in range(length): - c = c_fun_str[i] - # When c is upper and no '_' appears before, do more checks - if c.isupper() and (i > 0) and c_fun_str[i - 1] != '_': + char = c_fun_str[i] + # When char is upper case and no '_' appears before, do more checks + if char.isupper() and (i > 0) and c_fun_str[i - 1] != '_': if i < length - 1 and c_fun_str[i + 1].islower(): new_name += '_' elif c_fun_str[i - 1].isdigit(): new_name += '_' - new_name += c + new_name += char return new_name.lstrip('_').upper() |