(self)
| 32 | # This class allows C extension building to fail. |
| 33 | |
| 34 | def run(self): |
| 35 | try: |
| 36 | build_ext.run(self) |
| 37 | except (DistutilsPlatformError, FileNotFoundError): |
| 38 | raise BuildFailed() |
| 39 | |
| 40 | def build_extension(self, ext): |
| 41 | try: |
nothing calls this directly
no test coverage detected