Commit e147e5b5 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

doc: Use a raw string for regular expressions

Since Python 3.12 unknown escape sequences trigger a warning.
parent 60f1176e
......@@ -38,7 +38,7 @@ import re
def parse_file(fn, cl, tl, sl):
p = False
section = ""
resec = re.compile("\s*/?\* SECTION: ")
resec = re.compile(r"\s*/?\* SECTION: ")
try:
# Python3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment