-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: pull 3.12-3.13 diff into the project (#962)
- Loading branch information
1 parent
d5a337b
commit 014a3f1
Showing
250 changed files
with
42,724 additions
and
28,253 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: Python 3.13\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-07-29 10:36+0000\n" | ||
"POT-Creation-Date: 2024-09-23 07:52+0800\n" | ||
"PO-Revision-Date: 2021-12-09 20:47+0800\n" | ||
"Last-Translator: Matt Wang <[email protected]>\n" | ||
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" | ||
|
@@ -52,27 +52,26 @@ msgstr "" | |
|
||
#: ../../c-api/bool.rst:28 | ||
msgid "" | ||
"The Python ``False`` object. This object has no methods and is `immortal " | ||
"<https://peps.python.org/pep-0683/>`_." | ||
"The Python ``False`` object. This object has no methods and is :term:" | ||
"`immortal`." | ||
msgstr "" | ||
"Python 的 ``False`` 物件。此物件沒有任何方法且為\\ `不滅的 (immortal) " | ||
"<https://peps.python.org/pep-0683/>`_。" | ||
"Python 的 ``False`` 物件。此物件沒有任何方法且為\\ :term:`不滅的 (immortal) " | ||
"<immortal>`。" | ||
|
||
#: ../../c-api/bool.rst:31 | ||
msgid ":c:data:`Py_False` is immortal." | ||
msgstr ":c:data:`Py_False` 為不滅的。" | ||
msgid ":c:data:`Py_False` is :term:`immortal`." | ||
msgstr ":c:data:`Py_False` 為\\ :term:`不滅的 <immortal>`。" | ||
|
||
#: ../../c-api/bool.rst:37 | ||
msgid "" | ||
"The Python ``True`` object. This object has no methods and is `immortal " | ||
"<https://peps.python.org/pep-0683/>`_." | ||
"The Python ``True`` object. This object has no methods and is :term:" | ||
"`immortal`." | ||
msgstr "" | ||
"Python 的 ``True`` 物件。此物件沒有任何方法且為\\ `不滅的 (immortal) " | ||
"<https://peps.python.org/pep-0683/>`_。" | ||
"Python 的 ``True`` 物件。此物件沒有任何方法且為\\ :term:`不滅的 <immortal>`。" | ||
|
||
#: ../../c-api/bool.rst:40 | ||
msgid ":c:data:`Py_True` is immortal." | ||
msgstr ":c:data:`Py_True` 為不滅的。" | ||
msgid ":c:data:`Py_True` is :term:`immortal`." | ||
msgstr ":c:data:`Py_True` 為\\ :term:`不滅的 <immortal>`。" | ||
|
||
#: ../../c-api/bool.rst:46 | ||
msgid "Return :c:data:`Py_False` from a function." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: Python 3.13\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-12-26 00:03+0000\n" | ||
"POT-Creation-Date: 2024-09-23 07:52+0800\n" | ||
"PO-Revision-Date: 2018-05-23 14:04+0000\n" | ||
"Last-Translator: Adrian Liaw <[email protected]>\n" | ||
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" | ||
|
@@ -316,16 +316,14 @@ msgstr "" | |
|
||
#: ../../c-api/bytes.rst:194 | ||
msgid "" | ||
"A way to resize a bytes object even though it is \"immutable\". Only use " | ||
"this to build up a brand new bytes object; don't use this if the bytes may " | ||
"already be known in other parts of the code. It is an error to call this " | ||
"function if the refcount on the input bytes object is not one. Pass the " | ||
"address of an existing bytes object as an lvalue (it may be written into), " | ||
"and the new size desired. On success, *\\*bytes* holds the resized bytes " | ||
"object and ``0`` is returned; the address in *\\*bytes* may differ from its " | ||
"input value. If the reallocation fails, the original bytes object at " | ||
"*\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError` " | ||
"is set, and ``-1`` is returned." | ||
"Resize a bytes object. *newsize* will be the new length of the bytes object. " | ||
"You can think of it as creating a new bytes object and destroying the old " | ||
"one, only more efficiently. Pass the address of an existing bytes object as " | ||
"an lvalue (it may be written into), and the new size desired. On success, " | ||
"*\\*bytes* holds the resized bytes object and ``0`` is returned; the address " | ||
"in *\\*bytes* may differ from its input value. If the reallocation fails, " | ||
"the original bytes object at *\\*bytes* is deallocated, *\\*bytes* is set to " | ||
"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned." | ||
msgstr "" | ||
|
||
#: ../../c-api/bytes.rst:11 | ||
|
Oops, something went wrong.