diff -r 4fc11172df1b -r e836d196e888 eric6/Utilities/ModuleParser.py --- a/eric6/Utilities/ModuleParser.py Wed Jan 13 19:02:30 2021 +0100 +++ b/eric6/Utilities/ModuleParser.py Wed Jan 13 19:02:58 2021 +0100 @@ -801,7 +801,7 @@ break elif m.start("Import") >= 0: - ## import module + #- import module names = [n.strip() for n in "".join(m.group("ImportList").splitlines()) .replace("\\", "").split(',')] @@ -810,7 +810,7 @@ if name not in self.imports]) elif m.start("ImportFrom") >= 0: - ## from module import stuff + #- from module import stuff mod = m.group("ImportFromPath") namesLines = (m.group("ImportFromList") .replace("(", "").replace(")", "")