(self)
| 516 | if len(symbols) == 1: |
| 517 | return symbols[0] |
| 518 | if symbols: |
| 519 | raise RuntimeError( |
| 520 | f"library has multiple `initialize_*` symbols and none " |
| 521 | f"matches `_{self.name}`: {symbols}" |
| 522 | ) |
| 523 | raise RuntimeError( |
| 524 | f"library does not export an `initialize_*` symbol for " |
| 525 | f"`{self.name}`; was it compiled with `@[python]` attributes " |
| 526 | f"and `precompileModules`/`shared`?" |
no test coverage detected