| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 4e4deca commit d4bcb36
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1508,6 +1508,9 @@ then this will be `null`. | |||
| 1508 | 1508 | `subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will | |
| 1509 | 1509 | refer to the same value. | |
| 1510 | 1510 | ||
| 1511 | + The `subprocess.stderr` property can be `null` if the child process could | ||
| 1512 | + not be successfully spawned. | ||
| 1513 | + | ||
| 1511 | 1514 | ### `subprocess.stdin` | |
| 1512 | 1515 | <!-- YAML | |
| 1513 | 1516 | added: v0.1.90 | |
@@ -1526,6 +1529,9 @@ then this will be `null`. | |||
| 1526 | 1529 | `subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will | |
| 1527 | 1530 | refer to the same value. | |
| 1528 | 1531 | ||
| 1532 | + The `subprocess.stdin` property can be `undefined` if the child process could | ||
| 1533 | + not be successfully spawned. | ||
| 1534 | + | ||
| 1529 | 1535 | ### `subprocess.stdio` | |
| 1530 | 1536 | <!-- YAML | |
| 1531 | 1537 | added: v0.7.10 | |
@@ -1566,6 +1572,9 @@ assert.strictEqual(subprocess.stdio[2], null); | |||
| 1566 | 1572 | assert.strictEqual(subprocess.stdio[2], subprocess.stderr); | |
| 1567 | 1573 | ``` | |
| 1568 | 1574 | ||
| 1575 | + The `subprocess.stdio` property can be `undefined` if the child process could | ||
| 1576 | + not be successfully spawned. | ||
| 1577 | + | ||
| 1569 | 1578 | ### `subprocess.stdout` | |
| 1570 | 1579 | <!-- YAML | |
| 1571 | 1580 | added: v0.1.90 | |
@@ -1591,6 +1600,9 @@ subprocess.stdout.on('data', (data) => { | |||
| 1591 | 1600 | }); | |
| 1592 | 1601 | ``` | |
| 1593 | 1602 | ||
| 1603 | + The `subprocess.stdout` property can be `null` if the child process could | ||
| 1604 | + not be successfully spawned. | ||
| 1605 | + | ||
| 1594 | 1606 | ### `subprocess.unref()` | |
| 1595 | 1607 | <!-- YAML | |
| 1596 | 1608 | added: v0.7.10 | |
| Back | FazBrowse Home | New Git URL |
0 commit comments