barbagus

Results 3 comments of barbagus

It would help to see your input file around line 975 to say anything. Most probably it indicates your input is actually malformed. I ran into similar issues and this...

Indeed I see the Pandora's box of string quoting. The way I implemented in #47 cowardly avoid having to deal with it. It works as previously: `re.findall(r"\[default: (.*)\]")` but it...

As for string containing `]`, because `.*` is greedy, it doesn't pose any problem I reckon. The following example already works as expected (resulting in `[]`) with or without quoting....