Jonah Caplan
Jonah Caplan
given the file hello.gv.txt: ``` digraph G {Hello->World}" ``` with a trailing " character. Dot is still able to parse the file. Calling: ``` graph = AGraph('./hello.gv.txt') ``` also succeeds....
It took me a few extra minutes to realize I had `TERM=screen-256color`. Update the docs so the suggested fix works on more configurations. Fixes #1559
I lost some time figuring out that I need to change `set -ga terminal-overrides ",xterm-256color:Tc"` to `set -ga terminal-overrides ",*-256color:Tc"`. The wildcard will probably work for more people.
`spawn_bash` assumes you're spawning a new terminal on the same machine running rexpect. I use pexpect to write integration tests for embedded targets and `pxssh` is really useful. Having the...
It would also be nice to borrow from `replwrap` and have a method to fold these three lines into one: ``` p.send_line("hostname")?; let hostname = p.read_line()?; p.wait_for_prompt()?; // go sure...
- [x] add sphinx based doc build - [ ] convert docstrings to use sphinx `:macros:`