File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -888,15 +888,15 @@ while True:
888
888
```
889
889
890
890
#### Modes:
891
- * ` 'r' ` - Read (default).
892
- * ` 'w' ` - Write (truncate).
893
- * ` 'x' ` - Write or fail if file already exists.
894
- * ` 'a' ` - Append.
895
- * ` 'w+' ` - Read and write (truncate).
896
- * ` 'r+' ` - Read and write from beginning.
897
- * ` 'a+' ` - Read and write from the end.
898
- * ` 'b' ` - Binary mode.
899
- * ` 't' ` - Text mode (default).
891
+ * ** ` 'r' ` - Read (default).**
892
+ * ** ` 'w' ` - Write (truncate).**
893
+ * ** ` 'x' ` - Write or fail if the file already exists.**
894
+ * ** ` 'a' ` - Append.**
895
+ * ** ` 'w+' ` - Read and write (truncate).**
896
+ * ** ` 'r+' ` - Read and write from the beginning.**
897
+ * ** ` 'a+' ` - Read and write from the end.**
898
+ * ** ` 'b' ` - Binary mode.**
899
+ * ** ` 't' ` - Text mode (default).**
900
900
901
901
#### Newline - input:
902
902
* ` 'None' ` - Input is broken on ` '\n' ` , ` '\r' ` and ` '\r\n' ` . ` '\r' ` and ` '\r\n' ` are translated to ` '\n' ` .
You can’t perform that action at this time.
0 commit comments