(self, ext)
| 307 | |
| 308 | class new_build_ext(build_ext): |
| 309 | def build_extension(self, ext): |
| 310 | ext.extra_c_compile_args += std_c_flags(self) |
| 311 | ext.extra_cxx_compile_args += std_cxx_flags(self) |
| 312 | build_ext.build_extension(self, ext) |
| 313 | return new_build_clib, new_build_ext |
| 314 | |
| 315 | def generate_cython(): |
nothing calls this directly
no test coverage detected