@@ -56,8 +56,8 @@ Some facts and figures:
56
56
+------------------+---------------------------------------------+
57
57
| mode | action |
58
58
+==================+=============================================+
59
- | ``'r' or 'r:*' `` | Open for reading with transparent |
60
- | | compression (recommended). |
59
+ | ``'r' `` or | Open for reading with transparent |
60
+ | `` 'r:*' `` | compression (recommended). |
61
61
+------------------+---------------------------------------------+
62
62
| ``'r:' `` | Open for reading exclusively without |
63
63
| | compression. |
@@ -85,10 +85,11 @@ Some facts and figures:
85
85
| | Raise a :exc: `FileExistsError ` exception |
86
86
| | if it already exists. |
87
87
+------------------+---------------------------------------------+
88
- | ``'a' or 'a:' `` | Open for appending with no compression. The |
89
- | | file is created if it does not exist. |
88
+ | ``'a' `` or | Open for appending with no compression. The |
89
+ | `` 'a:' `` | file is created if it does not exist. |
90
90
+------------------+---------------------------------------------+
91
- | ``'w' or 'w:' `` | Open for uncompressed writing. |
91
+ | ``'w' `` or | Open for uncompressed writing. |
92
+ | ``'w:' `` | |
92
93
+------------------+---------------------------------------------+
93
94
| ``'w:gz' `` | Open for gzip compressed writing. |
94
95
+------------------+---------------------------------------------+
0 commit comments