Skip to content

Commit bc3390c

Browse files
authored
[3.13] Docs: Move "or" outside monospace syntax in tarfile.rst (GH-136263) (GH-136348)
Docs: Move "or" outside monospace syntax in `tarfile.rst` (GH-136263) (cherry picked from commit ade1988)
1 parent 52180bf commit bc3390c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Doc/library/tarfile.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Some facts and figures:
5656
+------------------+---------------------------------------------+
5757
| mode | action |
5858
+==================+=============================================+
59-
| ``'r' or 'r:*'`` | Open for reading with transparent |
60-
| | compression (recommended). |
59+
| ``'r'`` or | Open for reading with transparent |
60+
| ``'r:*'`` | compression (recommended). |
6161
+------------------+---------------------------------------------+
6262
| ``'r:'`` | Open for reading exclusively without |
6363
| | compression. |
@@ -85,10 +85,11 @@ Some facts and figures:
8585
| | Raise a :exc:`FileExistsError` exception |
8686
| | if it already exists. |
8787
+------------------+---------------------------------------------+
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. |
9090
+------------------+---------------------------------------------+
91-
| ``'w' or 'w:'`` | Open for uncompressed writing. |
91+
| ``'w'`` or | Open for uncompressed writing. |
92+
| ``'w:'`` | |
9293
+------------------+---------------------------------------------+
9394
| ``'w:gz'`` | Open for gzip compressed writing. |
9495
+------------------+---------------------------------------------+

0 commit comments

Comments
 (0)