@@ -37,17 +37,17 @@ msgstr "用於函式的 C 結構。"
37
37
#: ../../c-api/function.rst:22
38
38
msgid ""
39
39
"This is an instance of :c:type:`PyTypeObject` and represents the Python "
40
- "function type. It is exposed to Python programmers as ``types. "
41
- "FunctionType``."
40
+ "function type. It is exposed to Python programmers as "
41
+ "``types. FunctionType``."
42
42
msgstr ""
43
43
"這是個 :c:type:`PyTypeObject` 的實例,且代表了 Python 函式型別,Python 程式設"
44
44
"計者可透過 ``types.FunctionType`` 使用它。"
45
45
46
46
#: ../../c-api/function.rst:28
47
47
msgid ""
48
- "Return true if *o* is a function object (has type :c:data: "
49
- "`PyFunction_Type`). The parameter must not be ``NULL``. This function "
50
- "always succeeds."
48
+ "Return true if *o* is a function object (has "
49
+ "type :c:data: `PyFunction_Type`). The parameter must not be ``NULL``. This "
50
+ "function always succeeds."
51
51
msgstr ""
52
52
"如果 *o* 是個函式物件(擁有 :c:data:`PyFunction_Type` 的型別)則回傳 true。參"
53
53
"數必須不為 ``NULL``。此函式必能成功執行。"
@@ -63,28 +63,30 @@ msgstr ""
63
63
64
64
#: ../../c-api/function.rst:37
65
65
msgid ""
66
- "The function's docstring and name are retrieved from the code object. :attr: "
67
- "`~function.__module__` is retrieved from *globals*. The argument defaults, "
68
- "annotations and closure are set to ``NULL``. :attr:`~function.__qualname__` "
69
- "is set to the same value as the code object's :attr:`~codeobject. "
70
- "co_qualname` field."
66
+ "The function's docstring and name are retrieved from the code "
67
+ "object. :attr: `~function.__module__` is retrieved from *globals*. The "
68
+ "argument defaults, annotations and closure are set to "
69
+ "``NULL``. :attr:`~function.__qualname__` is set to the same value as the "
70
+ "code object's :attr:`~codeobject. co_qualname` field."
71
71
msgstr ""
72
- "函式的文件字串 (docstring) 和名稱是從程式碼物件所取得,:attr:`~function."
73
- "__module__` 是自 *globals* 所取得。引數預設值、標註 (annotation) 和閉包 "
74
- "(closure) 被設為 ``NULL``,:attr:`~function.__qualname__` 被設為和程式碼物"
72
+ "函式的文件字串 (docstring) 和名稱是從程式碼物件所取"
73
+ "得,:attr:`~function.__module__` 是自 *globals* 所取得。引數預設值、標註 "
74
+ "(annotation) 和閉包 (closure) 被設為 "
75
+ "``NULL``,:attr:`~function.__qualname__` 被設為和程式碼物"
75
76
"件 :attr:`~codeobject.co_qualname` 欄位相同的值。"
76
77
77
78
#: ../../c-api/function.rst:46
78
79
msgid ""
79
- "As :c:func:`PyFunction_New`, but also allows setting the function object's :"
80
- "attr:`~function.__qualname__` attribute. *qualname* should be a unicode "
81
- "object or ``NULL``; if ``NULL``, the :attr:`!__qualname__` attribute is set "
82
- "to the same value as the code object's :attr:`~codeobject.co_qualname` field."
80
+ "As :c:func:`PyFunction_New`, but also allows setting the function "
81
+ "object's :attr:`~function.__qualname__` attribute. *qualname* should be a "
82
+ "unicode object or ``NULL``; if ``NULL``, the :attr:`!__qualname__` attribute "
83
+ "is set to the same value as the code "
84
+ "object's :attr:`~codeobject.co_qualname` field."
83
85
msgstr ""
84
- "和 :c:func:`PyFunction_New` 相似,但也允許函式物件 :attr:`~function. "
85
- "__qualname__` 屬性的設定,*qualname* 應為一個 unicode 物件或是 ``NULL``;如 "
86
- "為 ``NULL``,:attr:`!__qualname__` 屬性會被設為與程式碼物件 :attr: "
87
- "`~codeobject.co_qualname` 欄位相同的值。"
86
+ "和 :c:func:`PyFunction_New` 相似,但也允許函式物 "
87
+ "件 :attr:`~function. __qualname__` 屬性的設定,*qualname* 應為一個 unicode 物 "
88
+ "件或是 ``NULL``;如為 ``NULL`` ,:attr:`!__qualname__` 屬性會被設為與程式碼物 "
89
+ "件 :attr: `~codeobject.co_qualname` 欄位相同的值。"
88
90
89
91
#: ../../c-api/function.rst:57
90
92
msgid "Return the code object associated with the function object *op*."
@@ -100,8 +102,9 @@ msgid ""
100
102
"attribute of the :ref:`function object <user-defined-funcs>` *op*. It can be "
101
103
"*NULL*."
102
104
msgstr ""
103
- "回傳一個\\ :ref:`函式物件 <user-defined-funcs>` *op* 之 :attr:`~function."
104
- "__module__` 屬性的 :term:`borrowed reference`,它可以是 *NULL*。"
105
+ "回傳一個\\ :ref:`函式物件 <user-defined-funcs>` *op* "
106
+ "之 :attr:`~function.__module__` 屬性的 :term:`borrowed reference`,它可以是 "
107
+ "*NULL*。"
105
108
106
109
#: ../../c-api/function.rst:71
107
110
msgid ""
@@ -180,10 +183,10 @@ msgstr ""
180
183
181
184
#: ../../c-api/function.rst:138
182
185
msgid ""
183
- "Clear watcher identified by *watcher_id* previously returned from :c:func: "
184
- "`PyFunction_AddWatcher` for the current interpreter. Return ``0`` on "
185
- "success, or ``-1`` and set an exception on error (e.g. if the given "
186
- "*watcher_id* was never registered.)"
186
+ "Clear watcher identified by *watcher_id* previously returned "
187
+ "from :c:func: `PyFunction_AddWatcher` for the current interpreter. Return "
188
+ "``0`` on success, or ``-1`` and set an exception on error (e.g. if the "
189
+ "given *watcher_id* was never registered.)"
187
190
msgstr ""
188
191
189
192
#: ../../c-api/function.rst:148
@@ -192,23 +195,23 @@ msgstr ""
192
195
193
196
#: ../../c-api/function.rst:150
194
197
msgid "``PyFunction_EVENT_CREATE``"
195
- msgstr ""
198
+ msgstr "``PyFunction_EVENT_CREATE`` "
196
199
197
200
#: ../../c-api/function.rst:151
198
201
msgid "``PyFunction_EVENT_DESTROY``"
199
- msgstr ""
202
+ msgstr "``PyFunction_EVENT_DESTROY`` "
200
203
201
204
#: ../../c-api/function.rst:152
202
205
msgid "``PyFunction_EVENT_MODIFY_CODE``"
203
- msgstr ""
206
+ msgstr "``PyFunction_EVENT_MODIFY_CODE`` "
204
207
205
208
#: ../../c-api/function.rst:153
206
209
msgid "``PyFunction_EVENT_MODIFY_DEFAULTS``"
207
- msgstr ""
210
+ msgstr "``PyFunction_EVENT_MODIFY_DEFAULTS`` "
208
211
209
212
#: ../../c-api/function.rst:154
210
213
msgid "``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
211
- msgstr ""
214
+ msgstr "``PyFunction_EVENT_MODIFY_KWDEFAULTS`` "
212
215
213
216
#: ../../c-api/function.rst:161
214
217
msgid "Type of a function watcher callback function."
@@ -217,9 +220,9 @@ msgstr ""
217
220
#: ../../c-api/function.rst:163
218
221
msgid ""
219
222
"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` "
220
- "then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term: "
221
- "`borrowed reference` to the new value that is about to be stored in *func* "
222
- "for the attribute that is being modified."
223
+ "then *new_value* will be ``NULL``. Otherwise, *new_value* will hold "
224
+ "a :term: `borrowed reference` to the new value that is about to be stored in "
225
+ "*func* for the attribute that is being modified."
223
226
msgstr ""
224
227
225
228
#: ../../c-api/function.rst:168
@@ -251,8 +254,8 @@ msgstr ""
251
254
#: ../../c-api/function.rst:185
252
255
msgid ""
253
256
"If the callback sets an exception, it must return ``-1``; this exception "
254
- "will be printed as an unraisable exception using :c:func: "
255
- "`PyErr_WriteUnraisable`. Otherwise it should return ``0``."
257
+ "will be printed as an unraisable exception "
258
+ "using :c:func: `PyErr_WriteUnraisable`. Otherwise it should return ``0``."
256
259
msgstr ""
257
260
258
261
#: ../../c-api/function.rst:189
0 commit comments