more python format
authorng0 <ng0@n0.is>
Sat, 12 Oct 2019 18:17:27 +0000 (18:17 +0000)
committerng0 <ng0@n0.is>
Sat, 12 Oct 2019 18:17:27 +0000 (18:17 +0000)
contrib/scripts/find_typedefs.py
contrib/scripts/gdb-iterate-dll.py

index 804eae23576b47f6fc93f3cd7bfbdbbc2e996ee3..965be3c3477be9666f5133b8fecf21e0082684de 100644 (file)
@@ -4,7 +4,6 @@ import os
 import re
 import sys
 
-
 debug = False
 
 
@@ -14,7 +13,8 @@ def get_td_from_function_signature(line, file, num):
         left_paren += 1
         li = line[left_paren:]
         right_paren = line.find(')')
-        if right_paren > 0 and right_paren > left_paren and line[right_paren:].find('(') >= 0:
+        if right_paren > 0 and right_paren > left_paren and line[
+            right_paren:].find('(') >= 0:
             fname = line[:right_paren]
             fname = fname.lstrip(' ').lstrip('*').lstrip(' ').rstrip(' ')
             if len(fname) > 0:
@@ -70,7 +70,7 @@ def find_typedefs(file):
                         td_line.append(l[rightcbrace + 1:])
             else:
                 td_line.append(l)
-            if len(l) > 0 and l[-1] == ';' and(not td_struct or td_level == 0):
+            if len(l) > 0 and l[-1] == ';' and (not td_struct or td_level == 0):
                 td_line = ' '.join(td_line)
                 td_line = td_line[:-1]
                 if len(td_line) > 0:
index 79d46aa96e62ddb218726aa78295593b014d5c6d..28c435ccbd00f009869bef1e9cb8e8569f4df39a 100644 (file)
@@ -23,7 +23,8 @@ def search_dll(head, field, match, pfield):
         if field_val.type.code == gdb.TYPE_CODE_INT:
             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):
+        elif (field_val.type.code == gdb.TYPE_CODE_STRING
+              ) or (field_val.type.code == gdb.TYPE_CODE_ARRAY):
             val = str(field_val)
             res = (match == val)
         elif (field_val.type.code == gdb.TYPE_CODE_TYPEDEF):