(self)
| 229 | super().__init__(name, *args, **kwargs) |
| 230 | |
| 231 | def function_meth_flags(self): |
| 232 | return super().function_meth_flags() + '| METH_STATIC' |
| 233 | |
| 234 | def _generate_call(self, w): |
| 235 | if isinstance(self.retval, NoneRetVal): |
nothing calls this directly
no test coverage detected