diff -r 60b48ab891fa -r 0bf517e60f54 eric6/Utilities/ModuleParser.py --- a/eric6/Utilities/ModuleParser.py Thu Sep 19 19:22:43 2019 +0200 +++ b/eric6/Utilities/ModuleParser.py Thu Sep 19 19:39:04 2019 +0200 @@ -780,7 +780,7 @@ break elif m.start("Import") >= 0: - # import module + ## import module names = [n.strip() for n in "".join(m.group("ImportList").splitlines()) .replace("\\", "").split(',')] @@ -789,7 +789,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(")", "")