From: ng0 Date: Mon, 5 Mar 2018 08:17:31 +0000 (+0000) Subject: flake8 gdb-iterate-dll.py X-Git-Tag: v0.11.0pre66~182 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f18aadc5cbdef52ca02f55f24039f56dbee06321;p=oweals%2Fgnunet.git flake8 gdb-iterate-dll.py --- diff --git a/contrib/gdb-iterate-dll.py b/contrib/gdb-iterate-dll.py index d1e3a4af3..79d46aa96 100644 --- a/contrib/gdb-iterate-dll.py +++ b/contrib/gdb-iterate-dll.py @@ -1,6 +1,7 @@ from gdb import * -def search_dll (head, field, match, pfield): + +def search_dll(head, field, match, pfield): """ Search in a DLL by iterates over it. @@ -11,7 +12,7 @@ def search_dll (head, field, match, pfield): print all fields of the matched elemented """ - (symbol, _) = lookup_symbol (head) + (symbol, _) = lookup_symbol(head) if symbol is None: print("Can't find symbol: " + head) return @@ -23,19 +24,17 @@ def search_dll (head, field, match, pfield): val = int(field_val) res = (match == val) elif (field_val.type.code == gdb.TYPE_CODE_STRING) or (field_val.type.code == gdb.TYPE_CODE_ARRAY): - val = str (field_val) + val = str(field_val) res = (match == val) elif (field_val.type.code == gdb.TYPE_CODE_TYPEDEF): - val = str (field_val) + val = str(field_val) res = match in val else: continue if res: if pfield is None: - print symbol_val_def + print(symbol_val_def) else: print(symbol_val_def[pfield]) symbol_val = symbol_val_def["next"] - -