I came across this code with the following line:
os.nice(4)
I understand that this is a way to specify [to the OS's kernel] the priority a process should have, ranging from -20 to 19, but it only works on Linux and other Unix like OSs.
How do I implement something roughly equivalent on Windows?