Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update child_process.md
  • Loading branch information
mifi authored Mar 11, 2022
commit e78e294c4a207e9b49dfe66ed238ad939758f96d
4 changes: 2 additions & 2 deletions doc/api/child_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -807,8 +807,8 @@ pipes between the parent and child. The value is one of the following:
`child_process` object as [`subprocess.stdio[fd]`][`subprocess.stdio`]. Pipes
created for fds 0, 1, and 2 are also available as [`subprocess.stdin`][],
[`subprocess.stdout`][] and [`subprocess.stderr`][], respectively.
Currently these are not actual Unix pipes and therefore the child process can not use
them by their descriptor files, e.g. `/dev/fd/2` or `/dev/stdout`.
Currently these are not actual Unix pipes and therefore the child process can
Comment thread
mifi marked this conversation as resolved.
Outdated
not use them by their descriptor files, e.g. `/dev/fd/2` or `/dev/stdout`.
2. `'overlapped'`: Same as `'pipe'` except that the `FILE_FLAG_OVERLAPPED` flag
is set on the handle. This is necessary for overlapped I/O on the child
process's stdio handles. See the
Expand Down