(self, *args, **kwargs)
| 21 | class FakeCCompilerOpt(CCompilerOpt): |
| 22 | fake_info = ("arch", "compiler", "extra_args") |
| 23 | def __init__(self, *args, **kwargs): |
| 24 | CCompilerOpt.__init__(self, None, **kwargs) |
| 25 | def dist_compile(self, sources, flags, **kwargs): |
| 26 | return sources |
| 27 | def dist_info(self): |