Utilities/ModuleParser.py

changeset 3034
7ce719013078
parent 3030
4a0a82ddd9d2
child 3039
8dd0165d805d
--- a/Utilities/ModuleParser.py	Sat Oct 19 12:28:12 2013 +0200
+++ b/Utilities/ModuleParser.py	Sat Oct 19 13:03:39 2013 +0200
@@ -638,8 +638,8 @@
             
             elif m.start("String") >= 0:
                 if modulelevel and \
-                   (src[start - len('\r\n'):start] == '\r\n' or \
-                    src[start - len('\n'):start] == '\n' or \
+                   (src[start - len('\r\n'):start] == '\r\n' or
+                    src[start - len('\n'):start] == '\n' or
                     src[start - len('\r'):start] == '\r'):
                     contents = m.group("StringContents3")
                     if contents is not None:
@@ -754,7 +754,7 @@
 
             elif m.start("Import") >= 0:
                 # import module
-                names = [n.strip() for n in 
+                names = [n.strip() for n in
                          "".join(m.group("ImportList").splitlines())
                          .replace("\\", "").split(',')]
                 for name in names:
@@ -764,7 +764,7 @@
             elif m.start("ImportFrom") >= 0:
                 # from module import stuff
                 mod = m.group("ImportFromPath")
-                names = [n.strip() for n in 
+                names = [n.strip() for n in
                          "".join(m.group("ImportFromList").splitlines())
                          .replace("\\", "").split(',')]
                 if mod not in self.from_imports:

eric ide

mercurial