@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.14\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-11-17 14:14 +0000\n "
15+ "POT-Creation-Date : 2026-03-01 14:19 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1717"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -99,33 +99,32 @@ msgstr "Obtém o *frame* próximo ao quadro externo."
9999
100100#: ../../c-api/frame.rst:51
101101msgid ""
102- "Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame."
102+ "Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer "
103+ "frame. This raises no exceptions."
103104msgstr ""
104- "Retorna uma :term:`referência forte` ou ``NULL`` se *frame* não tiver quadro "
105- "externo."
106105
107- #: ../../c-api/frame.rst:59
106+ #: ../../c-api/frame.rst:60
108107msgid "Get the *frame*'s :attr:`~frame.f_builtins` attribute."
109108msgstr "Obtém o atributo :attr:`~frame.f_builtins` do *frame*."
110109
111- #: ../../c-api/frame.rst:61 ../../c-api/frame.rst:92
110+ #: ../../c-api/frame.rst:62 ../../c-api/frame.rst:93
112111msgid "Return a :term:`strong reference`. The result cannot be ``NULL``."
113112msgstr ""
114113"Retorna uma :term:`referência forte`. O resultado não pode ser ``NULL``."
115114
116- #: ../../c-api/frame.rst:68
115+ #: ../../c-api/frame.rst:69
117116msgid "Get the *frame* code."
118117msgstr "Obtém o código de *frame*."
119118
120- #: ../../c-api/frame.rst:70 ../../c-api/frame.rst:136
119+ #: ../../c-api/frame.rst:71 ../../c-api/frame.rst:137
121120msgid "Return a :term:`strong reference`."
122121msgstr "Retorna uma :term:`referência forte`."
123122
124- #: ../../c-api/frame.rst:72
123+ #: ../../c-api/frame.rst:73
125124msgid "The result (frame code) cannot be ``NULL``."
126125msgstr "O resultado (código do frame) não pode ser ``NULL``."
127126
128- #: ../../c-api/frame.rst:79
127+ #: ../../c-api/frame.rst:80
129128msgid ""
130129"Get the generator, coroutine, or async generator that owns this frame, or "
131130"``NULL`` if this frame is not owned by a generator. Does not raise an "
@@ -135,55 +134,55 @@ msgstr ""
135134"``NULL`` se o frame não pertence a um gerador. Não levanta exceção, mesmo "
136135"que o valor retornado seja ``NULL``."
137136
138- #: ../../c-api/frame.rst:83
137+ #: ../../c-api/frame.rst:84
139138msgid "Return a :term:`strong reference`, or ``NULL``."
140139msgstr "Retorna uma :term:`referência forte`, ou ``NULL``."
141140
142- #: ../../c-api/frame.rst:90
141+ #: ../../c-api/frame.rst:91
143142msgid "Get the *frame*'s :attr:`~frame.f_globals` attribute."
144143msgstr "Obtenha o atributo :attr:`~frame.f_globals` do *frame*."
145144
146- #: ../../c-api/frame.rst:99
145+ #: ../../c-api/frame.rst:100
147146msgid "Get the *frame*'s :attr:`~frame.f_lasti` attribute."
148147msgstr "Obtenha o atributo :attr:`~frame.f_lasti` do *frame*."
149148
150- #: ../../c-api/frame.rst:101
149+ #: ../../c-api/frame.rst:102
151150msgid "Returns -1 if ``frame.f_lasti`` is ``None``."
152151msgstr "Retorna -1 se ``frame.f_lasti`` é ``None``."
153152
154- #: ../../c-api/frame.rst:108
153+ #: ../../c-api/frame.rst:109
155154msgid "Get the variable *name* of *frame*."
156155msgstr "Obtém a variável *name* de *frame*."
157156
158- #: ../../c-api/frame.rst:110
157+ #: ../../c-api/frame.rst:111
159158msgid "Return a :term:`strong reference` to the variable value on success."
160159msgstr ""
161160"Retorna uma :term:`referência forte` ao valor da variável em caso de sucesso."
162161
163- #: ../../c-api/frame.rst:111
162+ #: ../../c-api/frame.rst:112
164163msgid ""
165164"Raise :exc:`NameError` and return ``NULL`` if the variable does not exist."
166165msgstr ""
167166"Levanta uma exceção :exc:`NameError` e retorna ``NULL`` se a variável não "
168167"existir."
169168
170- #: ../../c-api/frame.rst:112
169+ #: ../../c-api/frame.rst:113
171170msgid "Raise an exception and return ``NULL`` on error."
172171msgstr "Levanta uma exceção e retorna ``NULL`` em caso de erro."
173172
174- #: ../../c-api/frame.rst:114
173+ #: ../../c-api/frame.rst:115
175174msgid "*name* type must be a :class:`str`."
176175msgstr "Tipo de *name* deve ser um :class:`str`."
177176
178- #: ../../c-api/frame.rst:121
177+ #: ../../c-api/frame.rst:122
179178msgid ""
180179"Similar to :c:func:`PyFrame_GetVar`, but the variable name is a C string "
181180"encoded in UTF-8."
182181msgstr ""
183182"Semelhante a :c:func:`PyFrame_GetVar`, mas o nome da variável é uma string C "
184183"codificada em UTF-8."
185184
186- #: ../../c-api/frame.rst:129
185+ #: ../../c-api/frame.rst:130
187186msgid ""
188187"Get the *frame*'s :attr:`~frame.f_locals` attribute. If the frame refers to "
189188"an :term:`optimized scope`, this returns a write-through proxy object that "
@@ -198,23 +197,23 @@ msgstr ""
198197"representa as variáveis locais do frame diretamente (como descrito para :"
199198"func:`locals`)."
200199
201- #: ../../c-api/frame.rst:140
200+ #: ../../c-api/frame.rst:141
202201msgid ""
203202"As part of :pep:`667`, return an instance of :c:var:"
204203"`PyFrameLocalsProxy_Type`."
205204msgstr ""
206205"Como parte de :pep:`667`, retorna uma instância de :c:var:"
207206"`PyFrameLocalsProxy_Type`."
208207
209- #: ../../c-api/frame.rst:146
208+ #: ../../c-api/frame.rst:147
210209msgid "Return the line number that *frame* is currently executing."
211210msgstr "Retorna o número da linha do *frame* atualmente em execução."
212211
213- #: ../../c-api/frame.rst:150
212+ #: ../../c-api/frame.rst:151
214213msgid "Frame Locals Proxies"
215214msgstr ""
216215
217- #: ../../c-api/frame.rst:154
216+ #: ../../c-api/frame.rst:155
218217msgid ""
219218"The :attr:`~frame.f_locals` attribute on a :ref:`frame object <frame-"
220219"objects>` is an instance of a \" frame-locals proxy\" . The proxy object "
@@ -223,34 +222,34 @@ msgid ""
223222"to date with the live local variables in the frame itself."
224223msgstr ""
225224
226- #: ../../c-api/frame.rst:160
225+ #: ../../c-api/frame.rst:161
227226msgid "See :pep:`667` for more information."
228227msgstr ""
229228
230- #: ../../c-api/frame.rst:164
229+ #: ../../c-api/frame.rst:165
231230msgid "The type of frame :func:`locals` proxy objects."
232231msgstr ""
233232
234- #: ../../c-api/frame.rst:168
233+ #: ../../c-api/frame.rst:169
235234msgid "Return non-zero if *obj* is a frame :func:`locals` proxy."
236235msgstr ""
237236
238- #: ../../c-api/frame.rst:172
237+ #: ../../c-api/frame.rst:173
239238msgid "Legacy Local Variable APIs"
240239msgstr ""
241240
242- #: ../../c-api/frame.rst:174
241+ #: ../../c-api/frame.rst:175
243242msgid ""
244243"These APIs are :term:`soft deprecated`. As of Python 3.13, they do nothing. "
245244"They exist solely for backwards compatibility."
246245msgstr ""
247246
248- #: ../../c-api/frame.rst:180 ../../c-api/frame.rst:194
249- #: ../../c-api/frame.rst:207
247+ #: ../../c-api/frame.rst:181 ../../c-api/frame.rst:195
248+ #: ../../c-api/frame.rst:208
250249msgid "This function is :term:`soft deprecated` and does nothing."
251250msgstr ""
252251
253- #: ../../c-api/frame.rst:182
252+ #: ../../c-api/frame.rst:183
254253msgid ""
255254"Prior to Python 3.13, this function would copy the :attr:`~frame.f_locals` "
256255"attribute of *f* to the internal \" fast\" array of local variables, allowing "
@@ -259,51 +258,51 @@ msgid ""
259258"dictionary."
260259msgstr ""
261260
262- #: ../../c-api/frame.rst:188 ../../c-api/frame.rst:201
263- #: ../../c-api/frame.rst:213
261+ #: ../../c-api/frame.rst:189 ../../c-api/frame.rst:202
262+ #: ../../c-api/frame.rst:214
264263msgid "This function now does nothing."
265264msgstr "Esta função agora não faz nada."
266265
267- #: ../../c-api/frame.rst:196
266+ #: ../../c-api/frame.rst:197
268267msgid ""
269268"Prior to Python 3.13, this function would copy the internal \" fast\" array "
270269"of local variables (which is used by the interpreter) to the :attr:`~frame."
271270"f_locals` attribute of *f*, allowing changes in local variables to be "
272271"visible to frame objects."
273272msgstr ""
274273
275- #: ../../c-api/frame.rst:209
274+ #: ../../c-api/frame.rst:210
276275msgid ""
277276"Prior to Python 3.13, this function was similar to :c:func:"
278277"`PyFrame_FastToLocals`, but would return ``0`` on success, and ``-1`` with "
279278"an exception set on failure."
280279msgstr ""
281280
282- #: ../../c-api/frame.rst:218
281+ #: ../../c-api/frame.rst:219
283282msgid ":pep:`667`"
284283msgstr ":pep:`667`"
285284
286- #: ../../c-api/frame.rst:222
285+ #: ../../c-api/frame.rst:223
287286msgid "Internal Frames"
288287msgstr ""
289288
290- #: ../../c-api/frame.rst:224
289+ #: ../../c-api/frame.rst:225
291290msgid "Unless using :pep:`523`, you will not need this."
292291msgstr ""
293292
294- #: ../../c-api/frame.rst:228
293+ #: ../../c-api/frame.rst:229
295294msgid "The interpreter's internal frame representation."
296295msgstr ""
297296
298- #: ../../c-api/frame.rst:234
297+ #: ../../c-api/frame.rst:235
299298msgid "Return a :term:`strong reference` to the code object for the frame."
300299msgstr ""
301300
302- #: ../../c-api/frame.rst:241
301+ #: ../../c-api/frame.rst:242
303302msgid "Return the byte offset into the last executed instruction."
304303msgstr ""
305304
306- #: ../../c-api/frame.rst:248
305+ #: ../../c-api/frame.rst:249
307306msgid ""
308307"Return the currently executing line number, or -1 if there is no line number."
309308msgstr ""
0 commit comments