(self)
| 457 | |
| 458 | # A simple check whether the compiler arguments cause optimization. |
| 459 | def is_optimizing(self): |
| 460 | return '-O' in str(self.cflags) and '-O0' not in self.cflags |
| 461 | |
| 462 | def should_use_closure(self): |
| 463 | # Don't run closure in all test modes, just a couple, since it slows |
no outgoing calls
no test coverage detected