(self)
| 23 | |
| 24 | @property |
| 25 | def tranquilized_functions(self): |
| 26 | self.parse() |
| 27 | |
| 28 | tranquilized = [f.name for f in self.nodes.body if _is_decorated(f)] |
| 29 | functions = [self.module[f] for f in tranquilized] |
| 30 | |
| 31 | return functions |
| 32 | |
| 33 | |
| 34 | class ScriptHandler(BaseHandler): |
nothing calls this directly
no test coverage detected