Make it possible to inject an exception into another thread
From the mailing list by Audrey Dutcher:
I'm trying to replicate the behavior you can get in CPython with the following code:
ctypes.pythonapi.PyThreadState_SetAsyncExc(ctypes.c_long(tid),
ctypes.py_object(KeyboardInterrupt))
Should probably be exposed in the __pypy__
module?