Henry Nguyen
Henry Nguyen
Instead of communicating via file system API's, could we communicate via stdin/stdout pipes using `subprocess,Popen`? Since our HTML inputs and JSON outputs are just text instead of binary, we shouldn't...
Hey @michaz , took a stab at this over at #2838 based on your approach described above.
Ah ok. I can submit a PR with the function `read_text_to_string` that behaves like `read_to_end_into` but returns an actual String instead of just the range of indices. Is this both...