A small but important update for the txjsonrpcqueue API.
For Twisted, instead of
from txjsonrpcqueue import TxWildcardQueue as WildcardQueue
from txjsonrpcqueue import TxRpcForwarder as RpcForwarder
the import should now look like:
from txjsonrpcqueue import WildcardQueue, RpcForwarder
For Python 3 asyncio, instead of:
from txjsonrpcqueue import AioWildcardQueue as WildcardQueue
from txjsonrpcqueue import AioRpcForwarder as RpcForwarder
the import should now look like:
from txjsonrpcqueue.asyncio import WildcardQueue, RpcForwarder