[clang] [clang-tools-extra] [compiler-rt] [libcxx] [lld] [lldb] [llvm] [mlir] Fix SyntaxWarning messages from python 3.12 (PR #86806)

Ellis Hoag via cfe-commits cfe-commits at lists.llvm.org
Wed Mar 27 16:09:56 PDT 2024


================
@@ -101,7 +101,7 @@ def extract_result_types(comment):
 
 
 def strip_doxygen(comment):
-    """Returns the given comment without \-escaped words."""
+    """Returns the given comment without \\-escaped words."""
----------------
ellishg wrote:

I see lots of changes to comment blocks in this patch. Can we use `'''` instead to fix those warnings?

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


More information about the cfe-commits mailing list