Fixed regexp for strings with double quotes

This commit is contained in:
Anthony Scemama 2022-01-11 22:44:18 +01:00
parent 33ca5e1018
commit ab88cc01a6
1 changed files with 1 additions and 1 deletions

View File

@ -53,5 +53,5 @@ re_decl = re.compile( "".join( [ r"^\ *",
re_test = re.compile(r"\( *(.*)(\.[a-zA-Z]*\.|[<>]=?|[=/]=)([^=]*)\)")
re_string = re.compile(r"'.*?'")
re_string = re.compile(r"'.*?'|\".*?\"")