(self)
| 285 | option_spec: ClassVar[OptionSpec] = PyObject.option_spec.copy() |
| 286 | |
| 287 | def run(self) -> list[Node]: |
| 288 | self.name = 'py:method' |
| 289 | self.options['classmethod'] = True |
| 290 | |
| 291 | return super().run() |
| 292 | |
| 293 | |
| 294 | class PyStaticMethod(PyMethod): |