eric6/Utilities/ClassBrowsers/pyclbr.py

changeset 7249
0bf517e60f54
parent 7229
53054eb5b15a
child 7259
7c017076c12e
--- 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(")", "")

eric ide

mercurial