Skip to content

Commit 5fc224e

Browse files
sync with cpython bdba86ea
1 parent 3e87fb1 commit 5fc224e

File tree

152 files changed

+4163
-3773
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+4163
-3773
lines changed

c-api/intro.po

Lines changed: 495 additions & 393 deletions
Large diffs are not rendered by default.

library/__future__.po

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.14\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2025-09-08 15:25+0800\n"
10+
"POT-Creation-Date: 2026-02-07 00:19+0000\n"
1111
"PO-Revision-Date: 2024-02-06 02:12+0000\n"
1212
"Last-Translator: Matt Wang <mattwang44@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -28,21 +28,21 @@ msgstr "**原始碼:**\\ :source:`Lib/__future__.py`"
2828

2929
#: ../../library/__future__.rst:11
3030
msgid ""
31-
"Imports of the form ``from __future__ import feature`` are "
32-
"called :ref:`future statements <future>`. These are special-cased by the "
33-
"Python compiler to allow the use of new Python features in modules "
34-
"containing the future statement before the release in which the feature "
35-
"becomes standard."
31+
"Imports of the form ``from __future__ import feature`` are called :ref:"
32+
"`future statements <future>`. These are special-cased by the Python compiler "
33+
"to allow the use of new Python features in modules containing the future "
34+
"statement before the release in which the feature becomes standard."
3635
msgstr ""
3736
"``from __future__ import feature`` 形式的引入被稱為 :ref:`future 陳述式 "
3837
"<future>`。這些是 Python 編譯器的特殊情況,允許在該功能成為標準版本之前在包"
3938
"含 future 陳述式的模組中使用新的 Python 功能。"
4039

4140
#: ../../library/__future__.rst:16
41+
#, fuzzy
4242
msgid ""
4343
"While these future statements are given additional special meaning by the "
4444
"Python compiler, they are still executed like any other import statement and "
45-
"the :mod:`__future__` exists and is handled by the import system the same "
45+
"the :mod:`!__future__` exists and is handled by the import system the same "
4646
"way any other Python module would be. This design serves three purposes:"
4747
msgstr ""
4848
"雖然這些 future 陳述式被 Python 編譯器賦予了額外的特殊意義,但它們仍然像任何"
@@ -56,21 +56,23 @@ msgid ""
5656
msgstr "為了避免混淆分析引入陳述式並預期要找到它們正在引入之模組的現有工具。"
5757

5858
#: ../../library/__future__.rst:24
59+
#, fuzzy
5960
msgid ""
6061
"To document when incompatible changes were introduced, and when they will be "
6162
"--- or were --- made mandatory. This is a form of executable documentation, "
62-
"and can be inspected programmatically via importing :mod:`__future__` and "
63+
"and can be inspected programmatically via importing :mod:`!__future__` and "
6364
"examining its contents."
6465
msgstr ""
6566
"記錄何時出現不相容的變更,以及何時開始強制執行這些變更。這是一種可執行文件的"
6667
"形式,可以透過引入 :mod:`__future__` 並檢查其內容以程式化的方式進行檢查。"
6768

6869
#: ../../library/__future__.rst:29
70+
#, fuzzy
6971
msgid ""
7072
"To ensure that :ref:`future statements <future>` run under releases prior to "
71-
"Python 2.1 at least yield runtime exceptions (the import "
72-
"of :mod:`__future__` will fail, because there was no module of that name "
73-
"prior to 2.1)."
73+
"Python 2.1 at least yield runtime exceptions (the import of :mod:`!"
74+
"__future__` will fail, because there was no module of that name prior to "
75+
"2.1)."
7476
msgstr ""
7577
"確保 :ref:`future 陳述式 <future>`\\ 在 Python 2.1 之前的版本中運行至少會產"
7678
"生 runtime 例外(\\ :mod:`__future__` 的引入將會失敗,因為 2.1 之前沒有該名稱"
@@ -81,8 +83,9 @@ msgid "Module Contents"
8183
msgstr "模組內容"
8284

8385
#: ../../library/__future__.rst:36
86+
#, fuzzy
8487
msgid ""
85-
"No feature description will ever be deleted from :mod:`__future__`. Since "
88+
"No feature description will ever be deleted from :mod:`!__future__`. Since "
8689
"its introduction in Python 2.1 the following features have found their way "
8790
"into the language using this mechanism:"
8891
msgstr ""
@@ -221,8 +224,8 @@ msgid ""
221224
"where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both "
222225
"are 5-tuples of the same form as :data:`sys.version_info`::"
223226
msgstr ""
224-
"通常,*OptionalRelease* 會小於 *MandatoryRelease*,且兩者都是"
225-
"與 :data:`sys.version_info` 形式相同的 5 元組 (5-tuple): ::"
227+
"通常,*OptionalRelease* 會小於 *MandatoryRelease*,且兩者都是與 :data:`sys."
228+
"version_info` 形式相同的 5 元組 (5-tuple): ::"
226229

227230
#: ../../library/__future__.rst:101
228231
msgid ""
@@ -279,19 +282,19 @@ msgstr ""
279282
msgid ""
280283
"*CompilerFlag* is the (bitfield) flag that should be passed in the fourth "
281284
"argument to the built-in function :func:`compile` to enable the feature in "
282-
"dynamically compiled code. This flag is stored in "
283-
"the :attr:`_Feature.compiler_flag` attribute on :class:`_Feature` instances."
285+
"dynamically compiled code. This flag is stored in the :attr:`_Feature."
286+
"compiler_flag` attribute on :class:`_Feature` instances."
284287
msgstr ""
285288
"*CompilerFlag* 是(位元欄位 (bitfield))旗標,應在第四個引數中傳遞給內建函"
286-
"式 :func:`compile` 以在動態編譯的程式碼中啟用該功能。此旗標儲存"
287-
"在 :class:`_Feature` 實例上的 :attr:`_Feature.compiler_flag` 屬性中。"
289+
"式 :func:`compile` 以在動態編譯的程式碼中啟用該功能。此旗標儲存在 :class:"
290+
"`_Feature` 實例上的 :attr:`_Feature.compiler_flag` 屬性中。"
288291

289292
#: ../../library/__future__.rst:133
290293
msgid ""
291294
"``from __future__ import annotations`` was previously scheduled to become "
292295
"mandatory in Python 3.10, but the change was delayed and ultimately "
293-
"canceled. This feature will eventually be deprecated and removed. "
294-
"See :pep:`649` and :pep:`749`."
296+
"canceled. This feature will eventually be deprecated and removed. See :pep:"
297+
"`649` and :pep:`749`."
295298
msgstr ""
296299
"``from __future__ import annotations`` 原本預定在 Python 3.10 中成為強制性功"
297300
"能,但該變更被延後並最終取消。此功能最終將被棄用並移除。請參閱 :pep:`649` "
@@ -320,8 +323,8 @@ msgstr "__future__ 機制的原始提案。"
320323
#~ msgid ""
321324
#~ "``from __future__ import annotations`` was previously scheduled to become "
322325
#~ "mandatory in Python 3.10, but the Python Steering Council twice decided "
323-
#~ "to delay the change (`announcement for Python 3.10 <https://"
324-
#~ "mail.python.org/archives/list/python-dev@python.org/message/"
326+
#~ "to delay the change (`announcement for Python 3.10 <https://mail.python."
327+
#~ "org/archives/list/python-dev@python.org/message/"
325328
#~ "CLVXXPQ2T2LQ5MP2Y53VVQFCXYWQJHKZ/>`__; `announcement for Python 3.11 "
326329
#~ "<https://mail.python.org/archives/list/python-dev@python.org/message/"
327330
#~ "VIZEBX5EYMSYIJNDBF6DMUMZOCWHARSO/>`__). No final decision has been made "

0 commit comments

Comments
 (0)