eric6/DebugClients/Python/DebugVariables.py

changeset 7628
f904d0eef264
parent 7594
ee35df230130
child 7637
c878e8255972
diff -r 7f643d41464e -r f904d0eef264 eric6/DebugClients/Python/DebugVariables.py
--- a/eric6/DebugClients/Python/DebugVariables.py	Wed Jun 17 17:12:21 2020 +0200
+++ b/eric6/DebugClients/Python/DebugVariables.py	Wed Jun 17 20:18:54 2020 +0200
@@ -58,7 +58,7 @@
             try:
                 attribute = getattr(var, name)
                 d[name] = attribute
-            except Exception:
+            except Exception:       # secok
                 pass    # if we can't get it, simply ignore it
         
         return d
@@ -91,7 +91,7 @@
             try:
                 attribute = getattr(var, name)
                 d[name] = attribute
-            except Exception:
+            except Exception:       # secok
                 pass    # if we can't get it, simply ignore it
         
         yield -1, d
@@ -653,12 +653,12 @@
     
     try:
         _TypeMap.append((long, None))           # __IGNORE_WARNING__
-    except Exception:
+    except Exception:       # secok
         pass    # not available on all Python versions
 
     try:
         _TypeMap.append((unicode, None))        # __IGNORE_WARNING__
-    except Exception:
+    except Exception:       # secok
         pass    # not available on all Python versions
 
     try:

eric ide

mercurial