DEBSOURCES
Skip Quicknav
sources / snakemake / 7.32.4-8.1 / tests / test_github_issue627 / job.py
12345678910
#!/usr/bin/python3 import time file = open("job.txt", "w") for i in range(300): file.write(str(i) + "\n") file.flush() time.sleep(1)