(cls, kind, signature=None)
| 1133 | |
| 1134 | |
| 1135 | def _patch_doc(cls, kind, signature=None): |
| 1136 | method = getattr(cls, kind) |
| 1137 | docstring, signature = _get_doc_and_signature(cls, kind, False, signature=signature) |
| 1138 | method.__doc__ = docstring |
| 1139 | method.__signature__ = signature |
| 1140 | |
| 1141 | |
| 1142 | @lru_cache |
no test coverage detected
searching dependent graphs…