We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc21387 commit 42e090bCopy full SHA for 42e090b
lld/test/MachO/tools/validate-unwind-info.py
@@ -11,7 +11,7 @@
11
12
13
def main():
14
- hex = "[a-f\d]"
+ hex = r"[a-f\d]"
15
hex8 = hex + "{8}"
16
17
parser = argparse.ArgumentParser(description=__doc__)
lld/utils/benchmark.py
@@ -51,7 +51,7 @@ def __str__(self):
51
def getBenchmarks():
52
ret = []
53
for i in glob.glob("*/response*.txt"):
54
- m = re.match("response-(.*)\.txt", os.path.basename(i))
+ m = re.match(r"response-(.*)\.txt", os.path.basename(i))
55
variant = m.groups()[0] if m else None
56
ret.append(Bench(os.path.dirname(i), variant))
57
return ret
0 commit comments