(path)
| 1356 | with open(cpp_path, 'w') as f: |
| 1357 | f.write(cpp) |
| 1358 | def getmtime(path): |
| 1359 | try: |
| 1360 | return os.path.getmtime(path) |
| 1361 | except Exception: |
| 1362 | return 0 |
| 1363 | python_config = f'{os.path.realpath(sys.executable)}-config' |
| 1364 | # `--embed` adds `-lpython3.11` to the link command, which appears to |
| 1365 | # be necessary when building an executable. |
no outgoing calls
no test coverage detected
searching dependent graphs…