Utilities/ClassBrowsers/rbclbr.py

changeset 3621
15f23ed3f216
parent 3591
2f2a4a76dd22
child 4021
195a471c327b
--- a/Utilities/ClassBrowsers/rbclbr.py	Fri May 30 13:17:20 2014 +0200
+++ b/Utilities/ClassBrowsers/rbclbr.py	Fri May 30 15:16:40 2014 +0200
@@ -419,8 +419,8 @@
             while acstack and \
                     acstack[-1][1] >= thisindent:
                 del acstack[-1]
-            acstack.append(["public", thisindent])  # default access control
-                                                    # is 'public'
+            acstack.append(["public", thisindent])
+            # default access control is 'public'
 
         elif m.start("Module") >= 0:
             # we found a module definition
@@ -460,8 +460,8 @@
             while acstack and \
                     acstack[-1][1] >= thisindent:
                 del acstack[-1]
-            acstack.append(["public", thisindent])  # default access control
-                                                    # is 'public'
+            acstack.append(["public", thisindent])
+            # default access control is 'public'
 
         elif m.start("AccessControl") >= 0:
             aclist = m.group("AccessControlList")

eric ide

mercurial