Sun, 10 Feb 2013 14:34:14 +0100
Fixed an issue in the module parser causing some imports not to be recognised.
Utilities/ModuleParser.py | file | annotate | diff | comparison | revisions |
--- a/Utilities/ModuleParser.py Sat Feb 09 13:01:42 2013 +0100 +++ b/Utilities/ModuleParser.py Sun Feb 10 14:34:14 2013 +0100 @@ -164,12 +164,12 @@ ) | (?P<Import> - ^ (?: import | from [ \t]+ \. [ \t]+ import ) [ \t]+ + ^ [ \t]* (?: import | from [ \t]+ \. [ \t]+ import ) [ \t]+ (?P<ImportList> (?: [^#;\\\n]+ (?: \\\n )* )* ) ) | (?P<ImportFrom> - ^ from [ \t]+ + ^ [ \t]* from [ \t]+ (?P<ImportFromPath> \.* \w+ (?: