(self, name)
| 89 | |
| 90 | class CMakeExtension(setuptools.Extension): |
| 91 | def __init__(self, name): |
| 92 | # don't invoke the original build_ext for this special extension |
| 93 | super().__init__(name, sources=[]) |
| 94 | |
| 95 | |
| 96 | class build_ext(setuptools.command.build_ext.build_ext): |
nothing calls this directly
no outgoing calls
no test coverage detected