mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
[3.13] Docs: Move "or" outside monospace syntax in tarfile.rst (GH-136263) (GH-136348)
Some checks are pending
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Some checks are pending
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Docs: Move "or" outside monospace syntax in `tarfile.rst` (GH-136263)
(cherry picked from commit ade1988094
)
This commit is contained in:
parent
52180bfb37
commit
bc3390c00a
1 changed files with 6 additions and 5 deletions
|
@ -56,8 +56,8 @@ Some facts and figures:
|
|||
+------------------+---------------------------------------------+
|
||||
| mode | action |
|
||||
+==================+=============================================+
|
||||
| ``'r' or 'r:*'`` | Open for reading with transparent |
|
||||
| | compression (recommended). |
|
||||
| ``'r'`` or | Open for reading with transparent |
|
||||
| ``'r:*'`` | compression (recommended). |
|
||||
+------------------+---------------------------------------------+
|
||||
| ``'r:'`` | Open for reading exclusively without |
|
||||
| | compression. |
|
||||
|
@ -85,10 +85,11 @@ Some facts and figures:
|
|||
| | Raise a :exc:`FileExistsError` exception |
|
||||
| | if it already exists. |
|
||||
+------------------+---------------------------------------------+
|
||||
| ``'a' or 'a:'`` | Open for appending with no compression. The |
|
||||
| | file is created if it does not exist. |
|
||||
| ``'a'`` or | Open for appending with no compression. The |
|
||||
| ``'a:'`` | file is created if it does not exist. |
|
||||
+------------------+---------------------------------------------+
|
||||
| ``'w' or 'w:'`` | Open for uncompressed writing. |
|
||||
| ``'w'`` or | Open for uncompressed writing. |
|
||||
| ``'w:'`` | |
|
||||
+------------------+---------------------------------------------+
|
||||
| ``'w:gz'`` | Open for gzip compressed writing. |
|
||||
+------------------+---------------------------------------------+
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue