I found the answer to my last question in an old post from Robin
Dunn. To force my app to run on a single processor I just do:
import win32api, win32process
cp = win32api.GetCurrentProcess()
win32process.SetProcessAffinityMask(cp, 1)
Thanks Robin!
gb