(self)
| 925 | remove_bytecode(self.lib_path) |
| 926 | |
| 927 | def rm_lib(self): |
| 928 | for modname in list(sys.modules): |
| 929 | if modname.startswith(self.module_name): |
| 930 | del sys.modules[modname] |
| 931 | os.unlink(self.lib_path) |
| 932 | remove_bytecode(self.lib_path) |
| 933 | |
| 934 | @property |
| 935 | def module_dir(self): |
no test coverage detected