@@ -888,25 +888,25 @@ 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 end
898
- * ` 'b' ` - binary mode
899
- * ` 't' ` - text mode (default)
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).
900
900
901
901
#### Newline - input:
902
- * ` None ` - Input is broken on ` '\n' ` , ` '\r' ` and ` '\r\n' ` . ` '\r' ` and ` '\r\n' ` are translated to ` '\n' ` .
902
+ * ` ' None' ` - Input is broken on ` '\n' ` , ` '\r' ` and ` '\r\n' ` . ` '\r' ` and ` '\r\n' ` are translated to ` '\n' ` .
903
903
* ` '' ` - Input is broken on ` '\n' ` , ` '\r' ` and ` '\r\n' ` .
904
904
* ` '\n' ` - Input is broken on ` '\n' ` .
905
905
* ` '\r' ` - Input is broken on ` '\r' ` .
906
906
* ` '\r\n' ` - Input is broken on ` '\r\n' ` .
907
907
908
908
#### Newline - output:
909
- * ` None ` - Any ` '\n' ` is translated to system default line separator.
909
+ * ` ' None' ` - Any ` '\n' ` is translated to system default line separator.
910
910
* ` '' ` - No translation.
911
911
* ` '\n' ` - No translation.
912
912
* ` '\r' ` - Any ` '\n' ` is translated to ` '\r' ` .
0 commit comments