(fnam: str)
| 73 | |
| 74 | |
| 75 | def edit_python_file(fnam: str) -> None: |
| 76 | with open(fnam) as f: |
| 77 | data = f.read() |
| 78 | data += "\n#" |
| 79 | with open(fnam, "w") as f: |
| 80 | f.write(data) |
| 81 | |
| 82 | |
| 83 | def run_benchmark( |
no test coverage detected
searching dependent graphs…