[llvm-branch-commits] [clang] [compiler-rt] [TySan] A Type Sanitizer (Runtime Library) (PR #76261)

Florian Hahn via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Dec 17 03:51:40 PST 2024


================
@@ -0,0 +1,161 @@
+# -*- Python -*-
+
+import os
+import platform
+import re
+
+import lit.formats
+
+# Get shlex.quote if available (added in 3.3), and fall back to pipes.quote if
+# it's not available.
+try:
+    import shlex
----------------
fhahn wrote:

Removed the conditional import, as we currently require Python >= 3.8 https://llvm.org/docs/GettingStarted.html#software

https://github.com/llvm/llvm-project/pull/76261


More information about the llvm-branch-commits mailing list