@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.13\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2025-02-14 14:17 +0000\n "
15
+ "POT-Creation-Date : 2025-02-21 14:16 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:48+0000\n "
17
17
"Last-Translator : Taichi Haradaguchi, 2024\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -192,32 +192,48 @@ msgid ""
192
192
msgstr ""
193
193
194
194
#: ../../c-api/function.rst:148
195
- msgid ""
196
- "Enumeration of possible function watcher events: - "
197
- "``PyFunction_EVENT_CREATE`` - ``PyFunction_EVENT_DESTROY`` - "
198
- "``PyFunction_EVENT_MODIFY_CODE`` - ``PyFunction_EVENT_MODIFY_DEFAULTS`` - "
199
- "``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
195
+ msgid "Enumeration of possible function watcher events:"
196
+ msgstr ""
197
+
198
+ #: ../../c-api/function.rst:150
199
+ msgid "``PyFunction_EVENT_CREATE``"
200
+ msgstr ""
201
+
202
+ #: ../../c-api/function.rst:151
203
+ msgid "``PyFunction_EVENT_DESTROY``"
204
+ msgstr ""
205
+
206
+ #: ../../c-api/function.rst:152
207
+ msgid "``PyFunction_EVENT_MODIFY_CODE``"
208
+ msgstr ""
209
+
210
+ #: ../../c-api/function.rst:153
211
+ msgid "``PyFunction_EVENT_MODIFY_DEFAULTS``"
212
+ msgstr ""
213
+
214
+ #: ../../c-api/function.rst:154
215
+ msgid "``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
200
216
msgstr ""
201
217
202
- #: ../../c-api/function.rst:160
218
+ #: ../../c-api/function.rst:161
203
219
msgid "Type of a function watcher callback function."
204
220
msgstr ""
205
221
206
- #: ../../c-api/function.rst:162
222
+ #: ../../c-api/function.rst:163
207
223
msgid ""
208
224
"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` "
209
225
"then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term:"
210
226
"`borrowed reference` to the new value that is about to be stored in *func* "
211
227
"for the attribute that is being modified."
212
228
msgstr ""
213
229
214
- #: ../../c-api/function.rst:167
230
+ #: ../../c-api/function.rst:168
215
231
msgid ""
216
232
"The callback may inspect but must not modify *func*; doing so could have "
217
233
"unpredictable effects, including infinite recursion."
218
234
msgstr ""
219
235
220
- #: ../../c-api/function.rst:170
236
+ #: ../../c-api/function.rst:171
221
237
msgid ""
222
238
"If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked "
223
239
"after `func` has been fully initialized. Otherwise, the callback is invoked "
@@ -229,22 +245,22 @@ msgid ""
229
245
"semantics of the Python code being executed."
230
246
msgstr ""
231
247
232
- #: ../../c-api/function.rst:179
248
+ #: ../../c-api/function.rst:180
233
249
msgid ""
234
250
"If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the "
235
251
"callback to the about-to-be-destroyed function will resurrect it, preventing "
236
252
"it from being freed at this time. When the resurrected object is destroyed "
237
253
"later, any watcher callbacks active at that time will be called again."
238
254
msgstr ""
239
255
240
- #: ../../c-api/function.rst:184
256
+ #: ../../c-api/function.rst:185
241
257
msgid ""
242
258
"If the callback sets an exception, it must return ``-1``; this exception "
243
259
"will be printed as an unraisable exception using :c:func:"
244
260
"`PyErr_WriteUnraisable`. Otherwise it should return ``0``."
245
261
msgstr ""
246
262
247
- #: ../../c-api/function.rst:188
263
+ #: ../../c-api/function.rst:189
248
264
msgid ""
249
265
"There may already be a pending exception set on entry to the callback. In "
250
266
"this case, the callback should return ``0`` with the same exception still "
0 commit comments