+ # wxaddons should be always kept as the user may have installed
+ # third-party modules seperate from wxpython.
+ def testWxaddons(self, name):
+ for prefix in PREFIXES:
+ if name.startswith(prefix + "wxaddons"):
+ return True
+ return False
+
+ def testCommon(self, name):
+ for cmn in COMMON_FILES:
+ if fnmatchcase(name, cmn) or fnmatchcase(os.path.basename(name), cmn):
+ return True
+ return False