rfoo
rfoo copied to clipboard
rfoo - Fast Python RPC client/server module.
rconsole doesn't store history. It would be really nice if rconsole would store the history in order to just use the up-arrow key to replay recent commands after a restart.
#### Steps Followed: - Clone this repository and `cd` to it. - Output of `python setup.py install`: ``` running install running build running build_py creating build creating build/lib.linux-x86_64-3.7 creating build/lib.linux-x86_64-3.7/rfoo...
PipeConnection used parent initializer, which resulted in accessing `recv` property of None on line 223 ``` class Connection(object): def __init__(self, conn=None): self._conn = conn self.recv = self._conn.recv ``` This fix...