(cls_or_self, /, *args, **keywords)
| 384 | |
| 385 | def _make_unbound_method(self): |
| 386 | def _method(cls_or_self, /, *args, **keywords): |
| 387 | keywords = {**self.keywords, **keywords} |
| 388 | return self.func(cls_or_self, *self.args, *args, **keywords) |
| 389 | _method.__isabstractmethod__ = self.__isabstractmethod__ |
| 390 | _method._partialmethod = self |
| 391 | return _method |