@@ -63,8 +63,8 @@ Some facts and figures:
63
63
+------------------+---------------------------------------------+
64
64
| mode | action |
65
65
+==================+=============================================+
66
- | ``'r' or 'r:*' `` | Open for reading with transparent |
67
- | | compression (recommended). |
66
+ | ``'r' `` or | Open for reading with transparent |
67
+ | `` 'r:*' `` | compression (recommended). |
68
68
+------------------+---------------------------------------------+
69
69
| ``'r:' `` | Open for reading exclusively without |
70
70
| | compression. |
@@ -98,10 +98,11 @@ Some facts and figures:
98
98
| | Raise a :exc: `FileExistsError ` exception |
99
99
| | if it already exists. |
100
100
+------------------+---------------------------------------------+
101
- | ``'a' or 'a:' `` | Open for appending with no compression. The |
102
- | | file is created if it does not exist. |
101
+ | ``'a' `` or | Open for appending with no compression. The |
102
+ | `` 'a:' `` | file is created if it does not exist. |
103
103
+------------------+---------------------------------------------+
104
- | ``'w' or 'w:' `` | Open for uncompressed writing. |
104
+ | ``'w' `` or | Open for uncompressed writing. |
105
+ | ``'w:' `` | |
105
106
+------------------+---------------------------------------------+
106
107
| ``'w:gz' `` | Open for gzip compressed writing. |
107
108
+------------------+---------------------------------------------+
0 commit comments