--- 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):