fixup! Fix the regexp warning in generate_asm.py
This commit is contained in:
parent
9789c7f4ff
commit
b2e50721e4
|
@ -27,7 +27,7 @@ import sys
|
|||
|
||||
functions = {}
|
||||
|
||||
func_re = re.compile("^\s*FDB_API_(?:CHANGED|REMOVED)\s*\(\s*([^,]*),\s*([^)]*)\).*")
|
||||
func_re = re.compile(r"^\s*FDB_API_(?:CHANGED|REMOVED)\s*\(\s*([^,]*),\s*([^)]*)\).*")
|
||||
|
||||
with open(source, "r") as srcfile:
|
||||
for line in srcfile:
|
||||
|
|
Loading…
Reference in New Issue