(needs_compilation)
| 3188 | |
| 3189 | if tools: |
| 3190 | def find_tools(needs_compilation): |
| 3191 | t = [] |
| 3192 | for tool in tools: |
| 3193 | if tool.is_old and not arg_old: |
| 3194 | continue |
| 3195 | if tool.needs_compilation() != needs_compilation: |
| 3196 | continue |
| 3197 | t += [tool] |
| 3198 | return t |
| 3199 | |
| 3200 | def print_tools(t): |
| 3201 | for tool in t: |
no test coverage detected