10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-02 11:25:19 +02:00

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

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"'.*?'|\".*?\"")