-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtil.py
34 lines (27 loc) · 1.11 KB
/
Util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import sys
import time
import winsound
import inspect
import ctypes
def _asyncRaise(threadId, exctype):
threadId = ctypes.c_long(threadId)
if not inspect.isclass(exctype):
exctype = type(exctype)
res = ctypes.pythonapi.PyThreadState_SetAsyncExc(threadId, ctypes.py_object(exctype))
if res == 0:
raise ValueError("invalid thread id")
elif res != 1:
# """if it returns a number greater than one, you're in trouble,
# and you should call it again with exc=NULL to revert the effect"""
ctypes.pythonapi.PyThreadState_SetAsyncExc(threadId, None)
raise SystemError("PyThreadState_SetAsyncExc failed")
def stopThread(thread):
if thread.isAlive():
_asyncRaise(thread.ident, SystemExit)
def getTimeFormatted():
return time.strftime("[%Y-%m-%d %H:%M:%S]",time.localtime())
def printWithTime(*objects, sep=' ', end='\n', file=sys.stdout, flush=False):
print(getTimeFormatted()+":", sep=' ', end='')
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
def inputWithTimePrompt(prompt):
return input(getTimeFormatted()+":"+prompt)