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 e4c0f4a commit 7ae32bfCopy full SHA for 7ae32bf
lldb/packages/Python/lldbsuite/test/decorators.py
@@ -1098,7 +1098,7 @@ def is_feature_enabled():
1098
).decode("utf-8")
1099
# If 'feature: 1' was output, then this feature is available and
1100
# the test should not be skipped.
1101
- if re.match("%s: 1\s*" % feature, output):
+ if re.match(r"%s: 1\s*" % feature, output):
1102
return None
1103
else:
1104
return "%s is not supported on this system." % feature
0 commit comments