(fromfile, tofile)
| 40 | # Rules |
| 41 | # |
| 42 | def process_pyx(fromfile, tofile): |
| 43 | flags = ['-3', '--fast-fail'] |
| 44 | if tofile.endswith('.cxx'): |
| 45 | flags.append('--cplus') |
| 46 | |
| 47 | subprocess.check_call( |
| 48 | [sys.executable, '-m', 'cython'] + flags + ["-o", tofile, fromfile]) |
| 49 | |
| 50 | |
| 51 | def process_tempita_pyx(fromfile, tofile): |
no test coverage detected