Utilities/ClassBrowsers/idlclbr.py

changeset 3039
8dd0165d805d
parent 3030
4a0a82ddd9d2
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/Utilities/ClassBrowsers/idlclbr.py	Sat Oct 19 16:51:12 2013 +0200
+++ b/Utilities/ClassBrowsers/idlclbr.py	Sat Oct 19 17:42:18 2013 +0200
@@ -83,7 +83,7 @@
 |   (?P<End>
         [ \t]* } [ \t]* ;
     )
-""", re.VERBOSE | re.DOTALL | re.MULTILINE).search
+""", re.VERBOSE | re.DOTALL | re.MULTILINE).search      # __IGNORE_WARNING__
 
 # function to replace comments
 _commentsub = re.compile(r"""//[^\n]*\n|//[^\n]*$""").sub
@@ -238,7 +238,7 @@
             last_lineno_pos = start
             # close all interfaces/modules indented at least as much
             while classstack and \
-                  classstack[-1][1] >= thisindent:
+                    classstack[-1][1] >= thisindent:
                 if classstack[-1][0] is not None:
                     # record the end line
                     classstack[-1][0].setEndLine(lineno - 1)
@@ -287,7 +287,7 @@
             indent += 1
             # close all interfaces/modules indented at least as much
             while classstack and \
-                  classstack[-1][1] >= thisindent:
+                    classstack[-1][1] >= thisindent:
                 if classstack[-1][0] is not None:
                     # record the end line
                     classstack[-1][0].setEndLine(lineno - 1)
@@ -323,7 +323,7 @@
             indent += 1
             # close all interfaces/modules indented at least as much
             while classstack and \
-                  classstack[-1][1] >= thisindent:
+                    classstack[-1][1] >= thisindent:
                 if classstack[-1][0] is not None:
                     # record the end line
                     classstack[-1][0].setEndLine(lineno - 1)

eric ide

mercurial