File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- - Feature Name: expand-open-options
1
+ - Feature Name: ` expand_open_options `
2
2
- Start Date: 2015-08-04
3
- - RFC PR:
4
- - Rust Issue:
3
+ - RFC PR: [ rust-lang/rfcs # 1252 ] ( https://github.com/rust-lang/rfcs/pull/1252 )
4
+ - Rust Issue: [ rust-lang/rust # 30014 ] ( https://github.com/rust-lang/rust/issues/30014 )
5
5
6
6
# Summary
7
7
@@ -65,7 +65,7 @@ _Implementation detail_: On Windows opening a file in append-mode has one flag
65
65
_ less_ , the right to change existing data is removed. On Unix opening a file in
66
66
append-mode has one flag _ extra_ , that sets the status of the file descriptor to
67
67
append-mode. You could say that on Windows write is a superset of append, while
68
- on Unix append is a superset of write.
68
+ on Unix append is a superset of write.
69
69
70
70
Because of this append is treated as a separate access mode in Rust, and if
71
71
` .append(true) ` is specified than ` .write() ` is ignored.
@@ -317,7 +317,7 @@ Out op scope.
317
317
318
318
### Inheritance of file descriptors
319
319
Leaking file descriptors to child processes can cause problems and can be a
320
- security vulnerability. See this report by
320
+ security vulnerability. See this report by
321
321
[ Python] ( https://www.python.org/dev/peps/pep-0446/ ) .
322
322
323
323
On Windows, child processes do not inherit file descriptors by default (but this
You can’t perform that action at this time.
0 commit comments