@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2025-01-10 14:49 +0000\n "
14
+ "POT-Creation-Date : 2025-02-21 14:51 +0000\n "
15
15
"PO-Revision-Date : 2024-05-11 00:32+0000\n "
16
16
"
Last-Translator :
Rafael Fontenelle <[email protected] >, 2024\n "
17
17
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -206,24 +206,34 @@ msgstr ""
206
206
"(por exemplo, ao receber um *watcher_id* desconhecido.)"
207
207
208
208
#: ../../c-api/function.rst:148
209
- msgid ""
210
- "Enumeration of possible function watcher events: - "
211
- "``PyFunction_EVENT_CREATE`` - ``PyFunction_EVENT_DESTROY`` - "
212
- "``PyFunction_EVENT_MODIFY_CODE`` - ``PyFunction_EVENT_MODIFY_DEFAULTS`` - "
213
- "``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
209
+ msgid "Enumeration of possible function watcher events:"
210
+ msgstr ""
211
+
212
+ #: ../../c-api/function.rst:150
213
+ msgid "``PyFunction_EVENT_CREATE``"
214
+ msgstr ""
215
+
216
+ #: ../../c-api/function.rst:151
217
+ msgid "``PyFunction_EVENT_DESTROY``"
218
+ msgstr ""
219
+
220
+ #: ../../c-api/function.rst:152
221
+ msgid "``PyFunction_EVENT_MODIFY_CODE``"
222
+ msgstr ""
223
+
224
+ #: ../../c-api/function.rst:153
225
+ msgid "``PyFunction_EVENT_MODIFY_DEFAULTS``"
214
226
msgstr ""
215
- "Listagem de possíveis eventos de sentinelas de função:\n"
216
- "- ``PyFunction_EVENT_CREATE``;\n"
217
- "- ``PyFunction_EVENT_DESTROY``;\n"
218
- "- ``PyFunction_EVENT_MODIFY_CODE``;\n"
219
- "- ``PyFunction_EVENT_MODIFY_DEFAULTS``;\n"
220
- "- ``PyFunction_EVENT_MODIFY_KWDEFAULTS``;"
221
-
222
- #: ../../c-api/function.rst:160
227
+
228
+ #: ../../c-api/function.rst:154
229
+ msgid "``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
230
+ msgstr ""
231
+
232
+ #: ../../c-api/function.rst:161
223
233
msgid "Type of a function watcher callback function."
224
234
msgstr "Tipo de uma função de retorno de sentinela de função."
225
235
226
- #: ../../c-api/function.rst:162
236
+ #: ../../c-api/function.rst:163
227
237
msgid ""
228
238
"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` "
229
239
"then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term:"
@@ -235,15 +245,15 @@ msgstr ""
235
245
"emprestada` ao novo valor prestes a ser guardado em *func* para o atributo "
236
246
"que está sendo modificado."
237
247
238
- #: ../../c-api/function.rst:167
248
+ #: ../../c-api/function.rst:168
239
249
msgid ""
240
250
"The callback may inspect but must not modify *func*; doing so could have "
241
251
"unpredictable effects, including infinite recursion."
242
252
msgstr ""
243
253
"A função de retorno poderá somente inspecionar, e não modificar *func*. Caso "
244
254
"contrário, poderíamos ter efeitos imprevisíveis, incluindo recursão infinita."
245
255
246
- #: ../../c-api/function.rst:170
256
+ #: ../../c-api/function.rst:171
247
257
msgid ""
248
258
"If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked "
249
259
"after `func` has been fully initialized. Otherwise, the callback is invoked "
@@ -263,7 +273,7 @@ msgstr ""
263
273
"diferenças de comportamento em tempo de execução, elas não mudam a semântica "
264
274
"do código Python sendo executado."
265
275
266
- #: ../../c-api/function.rst:179
276
+ #: ../../c-api/function.rst:180
267
277
msgid ""
268
278
"If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the "
269
279
"callback to the about-to-be-destroyed function will resurrect it, preventing "
@@ -276,7 +286,7 @@ msgstr ""
276
286
"revivido for destruído, quaisquer funções de retorno sentinelas ativas nesse "
277
287
"momento poderão ser chamadas novamente."
278
288
279
- #: ../../c-api/function.rst:184
289
+ #: ../../c-api/function.rst:185
280
290
msgid ""
281
291
"If the callback sets an exception, it must return ``-1``; this exception "
282
292
"will be printed as an unraisable exception using :c:func:"
@@ -286,7 +296,7 @@ msgstr ""
286
296
"exceção será exibida como uma exceção não levantável usando :c:func:"
287
297
"`PyErr_WriteUnraisable`. Caso contrário, deverá retornar ``0``."
288
298
289
- #: ../../c-api/function.rst:188
299
+ #: ../../c-api/function.rst:189
290
300
msgid ""
291
301
"There may already be a pending exception set on entry to the callback. In "
292
302
"this case, the callback should return ``0`` with the same exception still "
0 commit comments