diff -r 60b48ab891fa -r 0bf517e60f54 eric6/Utilities/ClassBrowsers/pyclbr.py --- a/eric6/Utilities/ClassBrowsers/pyclbr.py Thu Sep 19 19:22:43 2019 +0200 +++ b/eric6/Utilities/ClassBrowsers/pyclbr.py Thu Sep 19 19:39:04 2019 +0200 @@ -609,7 +609,7 @@ dictionary['__all__'] = pubs elif m.start("Import") >= 0: - # import module + ## import module names = [n.strip() for n in "".join(m.group("ImportList").splitlines()) .replace("\\", "").split(',')] @@ -621,7 +621,7 @@ dictionary["@@Import@@"].addImport(name, [], lineno) elif m.start("ImportFrom") >= 0: - # from module import stuff + ## from module import stuff mod = m.group("ImportFromPath") namesLines = (m.group("ImportFromList") .replace("(", "").replace(")", "")