99msgstr ""
1010"Project-Id-Version : Python 3.13\n "
1111"Report-Msgid-Bugs-To : \n "
12- "POT-Creation-Date : 2025-03-04 00:14 +0000\n "
12+ "POT-Creation-Date : 2025-08-16 00:16 +0000\n "
1313"PO-Revision-Date : 2021-11-19 23:36+0800\n "
1414"Last-Translator : Jordan Su <newjordansu1126@gmail.com>\n "
1515"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -59,22 +59,21 @@ msgstr ""
5959
6060#: ../../library/constants.rst:30
6161msgid ""
62- "A special value which should be returned by the binary special methods "
63- "(e. g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :meth:`~object.__rsub__`, "
64- "etc.) to indicate that the operation is not implemented with respect to the "
65- "other type; may be returned by the in-place binary special methods "
66- "(e.g. :meth:`~object.__imul__`, :meth:`~object.__iand__`, etc.) for the same "
67- "purpose. It should not be evaluated in a boolean context. :data:`! "
68- "NotImplemented` is the sole instance of the :data:`types.NotImplementedType` "
69- "type."
62+ "A special value which should be returned by the binary special methods (e. "
63+ "g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :"
64+ "meth:`~object.__rsub__`, etc.) to indicate that the operation is not "
65+ "implemented with respect to the other type; may be returned by the in-place "
66+ "binary special methods (e.g. :meth:`~object.__imul__`, :meth:`~object."
67+ "__iand__`, etc.) for the same purpose. It should not be evaluated in a "
68+ "boolean context. :data:`! NotImplemented` is the sole instance of the :data:"
69+ "`types.NotImplementedType` type."
7070msgstr ""
71- "會被二元特殊方法 (binary special methods)"
72- "(如::meth:`~object.__eq__`、:meth:`~object.__lt__`、:meth:`~object.__add__`、:meth:`~object.__rsub__` "
73- "等)所回傳的特殊值,代表著該運算沒有針對其他型別的實作。同理也可以被原地二元"
74- "特殊方法 (in-place binary special methods) "
75- "(如::meth:`~object.__imul__`、:meth:`~object.__iand__` 等)回傳。它不應該被"
76- "作為 boolean(布林)來解讀。:data:`!NotImplemented` 是型"
77- "別 :data:`types.NotImplementedType` 的唯一實例。"
71+ "會被二元特殊方法 (binary special methods)(如::meth:`~object.__eq__`、:meth:"
72+ "`~object.__lt__`、:meth:`~object.__add__`、:meth:`~object.__rsub__` 等)所回"
73+ "傳的特殊值,代表著該運算沒有針對其他型別的實作。同理也可以被原地二元特殊方法 "
74+ "(in-place binary special methods) (如::meth:`~object.__imul__`、:meth:"
75+ "`~object.__iand__` 等)回傳。它不應該被作為 boolean(布林)來解讀。:data:`!"
76+ "NotImplemented` 是型別 :data:`types.NotImplementedType` 的唯一實例。"
7877
7978#: ../../library/constants.rst:40
8079msgid ""
@@ -99,12 +98,12 @@ msgstr "請參見 :ref:`implementing-the-arithmetic-operations` 以找到更多
9998#: ../../library/constants.rst:51
10099msgid ""
101100":data:`!NotImplemented` and :exc:`!NotImplementedError` are not "
102- "interchangeable. This constant should only be used as described above; "
103- "see : exc:`NotImplementedError` for details on correct usage of the exception."
101+ "interchangeable. This constant should only be used as described above; see : "
102+ "exc:`NotImplementedError` for details on correct usage of the exception."
104103msgstr ""
105104":data:`!NotImplemented` 與 :exc:`!NotImplementedError` 並不一樣且不可互換。這"
106- "個常數只能用於上述的情況;欲知更多如何正確使用它們的細節,請參 "
107- "見 :exc: `NotImplementedError`。"
105+ "個常數只能用於上述的情況;欲知更多如何正確使用它們的細節,請參見 :exc: "
106+ "`NotImplementedError`。"
108107
109108#: ../../library/constants.rst:56
110109msgid ""
@@ -124,26 +123,26 @@ msgid ""
124123"type."
125124msgstr ""
126125"與刪節號 \" ``...``\" 字面相同。為一特殊值,大多用於結合使用者定義資料型別的延"
127- "伸切片語法 (extended slicing syntax)。``Ellipsis`` 是型 "
128- "別 :data:`types. EllipsisType` 的唯一實例。"
126+ "伸切片語法 (extended slicing syntax)。``Ellipsis`` 是型別 :data:`types. "
127+ "EllipsisType` 的唯一實例。"
129128
130129#: ../../library/constants.rst:72
131130msgid ""
132131"This constant is true if Python was not started with an :option:`-O` option. "
133132"See also the :keyword:`assert` statement."
134133msgstr ""
135- "如果 Python 沒有被以 :option:`-O` 選項啟動,則此常數為 true。請參 "
136- "見 :keyword: `assert` 陳述式。"
134+ "如果 Python 沒有被以 :option:`-O` 選項啟動,則此常數為 true。請參見 :keyword: "
135+ "`assert` 陳述式。"
137136
138137#: ../../library/constants.rst:78
139138msgid ""
140139"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` "
141- "cannot be reassigned (assignments to them, even as an attribute name, "
142- "raise : exc:`SyntaxError`), so they can be considered \" true\" constants."
140+ "cannot be reassigned (assignments to them, even as an attribute name, raise : "
141+ "exc:`SyntaxError`), so they can be considered \" true\" constants."
143142msgstr ""
144143":data:`None`,:data:`False`,:data:`True`,以及 :data:`__debug__` 都是不能被"
145- "重新賦值的(任何對它們的賦值,即使是屬性的名稱,也會拋 "
146- "出 :exc: `SyntaxError`)。因此,它們可以被視為”真正的”常數。"
144+ "重新賦值的(任何對它們的賦值,即使是屬性的名稱,也會拋出 :exc: "
145+ "`SyntaxError`)。因此,它們可以被視為”真正的”常數。"
147146
148147#: ../../library/constants.rst:86
149148msgid "Constants added by the :mod:`site` module"
@@ -161,31 +160,34 @@ msgstr ""
161160"式直譯器中是很有幫助的,但不應該在程式 (programs) 中被使用。"
162161
163162#: ../../library/constants.rst:96
163+ #, fuzzy
164164msgid ""
165165"Objects that when printed, print a message like \" Use quit() or Ctrl-D (i.e. "
166- "EOF) to exit\" , and when called, raise :exc:`SystemExit` with the specified "
167- "exit code."
166+ "EOF) to exit\" , and when accessed directly in the interactive interpreter or "
167+ "called as functions, raise :exc:`SystemExit` with the specified exit code."
168168msgstr ""
169169"當印出物件時,會印出一個訊息: \" Use quit() or Ctrl-D (i.e. EOF) to exit\" 。"
170170"當被呼叫時,則會拋出 :exc:`SystemExit` 並帶有指定的返回碼(exit code)。"
171171
172- #: ../../library/constants.rst:103
172+ #: ../../library/constants.rst:104
173+ #, fuzzy
173174msgid ""
174175"Object that when printed, prints the message \" Type help() for interactive "
175- "help, or help(object) for help about object.\" , and when called, acts as "
176- "described :func:`elsewhere <help>`."
176+ "help, or help(object) for help about object.\" , and when accessed directly "
177+ "in the interactive interpreter, invokes the built-in help system (see :func:"
178+ "`help`)."
177179msgstr ""
178180"當印出此物件時,會印出訊息 \" Type help() for interactive help, or "
179- "help(object) for help about object.\" ,並在呼叫時按所述的方式操 "
180- "作 :func: `elsewhere <help>`。"
181+ "help(object) for help about object.\" ,並在呼叫時按所述的方式操作 :func: "
182+ "`elsewhere <help>`。"
181183
182- #: ../../library/constants.rst:110
184+ #: ../../library/constants.rst:112
183185msgid ""
184186"Objects that when printed or called, print the text of copyright or credits, "
185187"respectively."
186188msgstr "當印出或是呼叫此物件時,分別會印出版權與致謝的文字。"
187189
188- #: ../../library/constants.rst:115
190+ #: ../../library/constants.rst:117
189191msgid ""
190192"Object that when printed, prints the message \" Type license() to see the "
191193"full license text\" , and when called, displays the full license text in a "
0 commit comments