(source: BuildSource)
| 243 | |
| 244 | |
| 245 | def is_package_source(source: BuildSource) -> bool: |
| 246 | return source.path is not None and os.path.split(source.path)[1] == "__init__.py" |
| 247 | |
| 248 | |
| 249 | def generate_c_extension_shim( |
no test coverage detected
searching dependent graphs…