10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-11-09 15:43:43 +01:00

Changed string regexp to non-greedy.

Version:1.1.31
This commit is contained in:
Anthony Scemama 2009-10-06 21:55:01 +02:00
parent 207d77375b
commit 2157cd322c

View File

@ -51,5 +51,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"'.*?'")