diff options
author | Konstantin Kharlamov <Hi-Angel@yandex.ru> | 2024-02-18 23:02:34 +0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-02-23 08:50:00 -0300 |
commit | fe00366b63c5cf1a84864647ec4e15721c04ebcf (patch) | |
tree | 988a87d8f7d10f98071df3dabbb6587f18bb96a6 /math | |
parent | 1e9a550ba41a5453c6578bb748fe2223a87e3024 (diff) | |
download | glibc-fe00366b63c5cf1a84864647ec4e15721c04ebcf.tar glibc-fe00366b63c5cf1a84864647ec4e15721c04ebcf.tar.gz glibc-fe00366b63c5cf1a84864647ec4e15721c04ebcf.tar.bz2 glibc-fe00366b63c5cf1a84864647ec4e15721c04ebcf.zip |
treewide: python-scripts: use `is None` for none-equality
Testing for `None`-ness with `==` operator is frowned upon and causes
warnings in at least "LGTM" python linter. Fix that.
Signed-off-by: Konstantin Kharlamov <Hi-Angel@yandex.ru>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'math')
-rwxr-xr-x | math/gen-tgmath-tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/gen-tgmath-tests.py b/math/gen-tgmath-tests.py index 216e4640ef..d3a7f65899 100755 --- a/math/gen-tgmath-tests.py +++ b/math/gen-tgmath-tests.py @@ -414,7 +414,7 @@ class Tests(object): elif ret == 'g' or 'g' in args: # Real and complex. have_complex = True - if complex_func == None: + if complex_func is None: complex_func = 'c%s' % func # For narrowing macros, compute narrow_args, the list of # argument types for which there is an actual corresponding @@ -462,7 +462,7 @@ class Tests(object): continue if t.complex and not have_complex: continue - if func == None and not t.complex: + if func is None and not t.complex: continue if ret == 's' and t.name.startswith('_Float'): continue @@ -544,7 +544,7 @@ class Tests(object): all_conds.append(can_comb) if narrowing: all_conds.append(narrow_cond) - any_complex = func == None + any_complex = func is None for t in this_args: if t.complex: any_complex = True |