eric6/Utilities/ClassBrowsers/pyclbr.py

changeset 7973
e836d196e888
parent 7923
91e843545d9a
child 8087
db518728761c
--- 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(")", "")

eric ide

mercurial