diff -r 4fc11172df1b -r e836d196e888 eric6/Utilities/ClassBrowsers/pyclbr.py --- a/eric6/Utilities/ClassBrowsers/pyclbr.py Wed Jan 13 19:02:30 2021 +0100 +++ b/eric6/Utilities/ClassBrowsers/pyclbr.py Wed Jan 13 19:02:58 2021 +0100 @@ -636,7 +636,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(',')] @@ -648,7 +648,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(")", "")