mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-12-22 04:13:33 +01:00
Fixed regexp for strings with double quotes
This commit is contained in:
parent
33ca5e1018
commit
ab88cc01a6
@ -53,5 +53,5 @@ re_decl = re.compile( "".join( [ r"^\ *",
|
|||||||
|
|
||||||
re_test = re.compile(r"\( *(.*)(\.[a-zA-Z]*\.|[<>]=?|[=/]=)([^=]*)\)")
|
re_test = re.compile(r"\( *(.*)(\.[a-zA-Z]*\.|[<>]=?|[=/]=)([^=]*)\)")
|
||||||
|
|
||||||
re_string = re.compile(r"'.*?'")
|
re_string = re.compile(r"'.*?'|\".*?\"")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user