DebugClients/Python3/DebugClientBase.py

changeset 2761
bcc10ef7015d
parent 2636
f3dd3c8d4aa4
child 2953
703452a2876f
child 3086
468af6a08374
diff -r 61d5d47755f0 -r bcc10ef7015d DebugClients/Python3/DebugClientBase.py
--- a/DebugClients/Python3/DebugClientBase.py	Sat Jun 29 17:32:25 2013 +0200
+++ b/DebugClients/Python3/DebugClientBase.py	Sat Jun 29 18:40:45 2013 +0200
@@ -1203,6 +1203,11 @@
             if afn.startswith(d):
                 return True
         
+        # special treatment for paths containing site-packages or dist-packages
+        for part in ["site-packages", "dist-packages"]:
+            if part in afn:
+                return True
+        
         return False
     
     def getRunning(self):

eric ide

mercurial