(docstring: str, name: str)
| 141 | |
| 142 | |
| 143 | def is_pybind11_overloaded_function_docstring(docstring: str, name: str) -> bool: |
| 144 | return docstring.startswith(f"{name}(*args, **kwargs)\nOverloaded function.\n\n") |
| 145 | |
| 146 | |
| 147 | def generate_stub_for_c_module( |
no test coverage detected
searching dependent graphs…