eric6/DebugClients/Python/FlexCompleter.py

changeset 7628
f904d0eef264
parent 7250
d8bdc55aee1a
child 7639
422fd05e9c91
--- a/eric6/DebugClients/Python/FlexCompleter.py	Wed Jun 17 17:12:21 2020 +0200
+++ b/eric6/DebugClients/Python/FlexCompleter.py	Wed Jun 17 20:18:54 2020 +0200
@@ -180,7 +180,7 @@
             return []
         expr, attr = m.group(1, 3)
         try:
-            thisobject = eval(expr, self.namespace)
+            thisobject = eval(expr, self.namespace)     # secok
         except Exception:
             return []
 
@@ -206,7 +206,7 @@
                     match = "{0}.{1}".format(expr, word)
                     try:
                         val = getattr(thisobject, word)
-                    except Exception:
+                    except Exception:       # secok
                         pass  # Include even if attribute not set
                     else:
                         match = self._callable_postfix(val, match)

eric ide

mercurial