DebugClients/Python/DebugClientBase.py

changeset 2761
bcc10ef7015d
parent 2636
f3dd3c8d4aa4
child 2953
703452a2876f
child 3163
9f50365a0870
--- a/DebugClients/Python/DebugClientBase.py	Sat Jun 29 17:32:25 2013 +0200
+++ b/DebugClients/Python/DebugClientBase.py	Sat Jun 29 18:40:45 2013 +0200
@@ -1193,6 +1193,11 @@
             if afn.startswith(d):
                 return 1
         
+        # special treatment for paths containing site-packages or dist-packages
+        for part in ["site-packages", "dist-packages"]:
+            if part in afn:
+                return 1
+        
         return 0
         
     def getRunning(self):

eric ide

mercurial