@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.13\n "
1414"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 "
1616"PO-Revision-Date : 2021-06-28 00:48+0000\n "
1717"Last-Translator : Taichi Haradaguchi, 2024\n "
1818"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -192,32 +192,48 @@ msgid ""
192192msgstr ""
193193
194194#: ../../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``"
200216msgstr ""
201217
202- #: ../../c-api/function.rst:160
218+ #: ../../c-api/function.rst:161
203219msgid "Type of a function watcher callback function."
204220msgstr ""
205221
206- #: ../../c-api/function.rst:162
222+ #: ../../c-api/function.rst:163
207223msgid ""
208224"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` "
209225"then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term:"
210226"`borrowed reference` to the new value that is about to be stored in *func* "
211227"for the attribute that is being modified."
212228msgstr ""
213229
214- #: ../../c-api/function.rst:167
230+ #: ../../c-api/function.rst:168
215231msgid ""
216232"The callback may inspect but must not modify *func*; doing so could have "
217233"unpredictable effects, including infinite recursion."
218234msgstr ""
219235
220- #: ../../c-api/function.rst:170
236+ #: ../../c-api/function.rst:171
221237msgid ""
222238"If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked "
223239"after `func` has been fully initialized. Otherwise, the callback is invoked "
@@ -229,22 +245,22 @@ msgid ""
229245"semantics of the Python code being executed."
230246msgstr ""
231247
232- #: ../../c-api/function.rst:179
248+ #: ../../c-api/function.rst:180
233249msgid ""
234250"If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the "
235251"callback to the about-to-be-destroyed function will resurrect it, preventing "
236252"it from being freed at this time. When the resurrected object is destroyed "
237253"later, any watcher callbacks active at that time will be called again."
238254msgstr ""
239255
240- #: ../../c-api/function.rst:184
256+ #: ../../c-api/function.rst:185
241257msgid ""
242258"If the callback sets an exception, it must return ``-1``; this exception "
243259"will be printed as an unraisable exception using :c:func:"
244260"`PyErr_WriteUnraisable`. Otherwise it should return ``0``."
245261msgstr ""
246262
247- #: ../../c-api/function.rst:188
263+ #: ../../c-api/function.rst:189
248264msgid ""
249265"There may already be a pending exception set on entry to the callback. In "
250266"this case, the callback should return ``0`` with the same exception still "
0 commit comments