Threading in python does not work very well, everything runs on a single thread most of the time because of the [https://wiki.python.org/moin/GlobalInterpreterLock global interpreter lock]. Using multiple threads only makes sense when doing I/O operations or sleeping, in this case Python can emulate a multi-threading behavior by switching threads when the current one becomes idle.
This causes much variability in the interface_rpc test, after D13182. The test duration varies most of the time between 1 and 30 seconds, but a duration of 282 seconds was recorded at least by one user. The test struggles to spam the work queue faster than the RPC calls are handled by bitcoind.
Fix this by using `multiprocessing` instead of `threading`. With this, I consistently get a test duration of 1 or 2 seconds.
The trade-off is that the code is slightly more complicated because processes need to use `queue` objects to commnunicate, as they don't share their variables.