(name)
| 280 | fo.write(source) |
| 281 | |
| 282 | def ensure_executable(name): |
| 283 | try: |
| 284 | which(name) |
| 285 | except Exception: |
| 286 | raise SystemExit(name + ' not found') |
| 287 | |
| 288 | def create_name_header(output_dir): |
| 289 | routine_re = re.compile(r'^ (subroutine|.* function)\s+(\w+)\(.*$', |
no outgoing calls
no test coverage detected
searching dependent graphs…