open3
open3 copied to clipboard
Fix Open3 documentation: clarify redirection options and blocking behavior
Summary
This PR fixes documentation issues in the Open3 module:
- Clarifies ignored redirection options: Each method that sets up pipes now clearly documents which redirection options will be ignored
- Fixes blocking behavior documentation: The popen methods (popen3, popen2, popen2e) incorrectly stated they always wait for child processes. They actually only wait when used with a block
- Improves pipeline examples: Removed misleading manual thread joining in block examples since the block form automatically waits
I forgot this was still open. Any other feedback about the changes?