File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 11= OS-Lib
2- :version: 0.10.2
2+ :version: 0.10.3
33:toc-placement: preamble
44:toclevels: 3
55:toc:
@@ -1450,7 +1450,10 @@ parent process read from the subprocess via `os.SubProcess#stdout`
14501450and `os.SubProcess#stderr`.
14511451* `os.Inherit`: inherits the stream from the parent process. This lets the
14521452subprocess read directly from the parent process's standard input or write
1453- directly to the parent process's standard output or error
1453+ directly to the parent process's standard output or error. `os.Inherit`
1454+ can be redirected on a threadlocal basis via `os.Inherit.in`, `.out`, or `.err`.
1455+ * `os.InheritRaw`: identical to `os.Inherit`, but without being affected by
1456+ redirects.
14541457* `os.Path`: connects the subprocess's stream to the given filesystem
14551458path, reading its standard input from a file or writing its standard
14561459output/error to the file.
@@ -2224,10 +2227,12 @@ string, int or set representations of the `os.PermSet` via:
22242227
22252228== Changelog
22262229
2227- [#main]
2228- === main
2230+ [#0-10-3]
2231+ === 0.10.3
2232+
2233+ * `os.Inherit` now can be redirected on a threadlocal basis via `os.Inherit.in`, `.out`, or `.err`.
2234+ `os.InheritRaw` is available if you do not want the redirects to take effect
22292235
2230- * `os.Inherit`
22312236
22322237[#0-10-2]
22332238=== 0.10.2
You can’t perform that action at this time.
0 commit comments