correct-timeout.py 237 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/env python3 import sys import time s = sys.stdin.read() # sleep a lot of time to generate timeout during correction time.sleep(100) # probably this result will not be seen because the script will be interrupted print(0.5)