mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
327 B
18 lines
327 B
"""
|
|
Python file for Processor test suite
|
|
|
|
Infinite loop which would continue forever if not
|
|
interrupted.
|
|
"""
|
|
import time
|
|
import sys
|
|
|
|
if sys.platform.startswith('win'):
|
|
import ctypes
|
|
kernel32 = ctypes.WinDLL('kernel32')
|
|
kernel32.SetConsoleCtrlHandler(None, 0)
|
|
|
|
|
|
while True:
|
|
print(time.time())
|
|
time.sleep(0.1)
|