eric6/Utilities/ModuleParser.py

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

eric ide

mercurial