@@ -20,7 +20,7 @@ msgid ""
2020msgstr ""
2121"Project-Id-Version : Python 3.12\n "
2222"Report-Msgid-Bugs-To : \n "
23- "POT-Creation-Date : 2023-06-30 14:13 +0000\n "
23+ "POT-Creation-Date : 2023-07-07 14:14 +0000\n "
2424"PO-Revision-Date : 2021-06-28 00:47+0000\n "
2525"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n "
2626"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -229,6 +229,9 @@ msgid ""
229229"statement by defining :meth:`~object.__aenter__` and :meth:`~object."
230230"__aexit__` methods. Introduced by :pep:`492`."
231231msgstr ""
232+ "Um objeto que controla o ambiente visto numa instrução :keyword:`async with` "
233+ "por meio da definição dos métodos :meth:`~object.__aenter__` e :meth:"
234+ "`~object.__aexit__`. Introduzido pela :pep:`492`."
232235
233236#: ../../glossary.rst:97
234237msgid "asynchronous generator"
@@ -281,6 +284,9 @@ msgid ""
281284"the body of the asynchronous generator function until the next :keyword:"
282285"`yield` expression."
283286msgstr ""
287+ "Este é um :term:`iterador assíncrono` que, quando chamado usando o método :"
288+ "meth:`~object.__anext__`, retorna um objeto aguardável que executará o corpo "
289+ "da função geradora assíncrona até a próxima expressão :keyword:`yield`."
284290
285291#: ../../glossary.rst:120
286292msgid ""
@@ -290,6 +296,11 @@ msgid ""
290296"with another awaitable returned by :meth:`~object.__anext__`, it picks up "
291297"where it left off. See :pep:`492` and :pep:`525`."
292298msgstr ""
299+ "Cada :keyword:`yield` suspende temporariamente o processamento, lembrando o "
300+ "estado de execução do local (incluindo variáveis locais e instruções ``try`` "
301+ "pendentes). Quando o *iterador gerador assíncrono* é efetivamente retomado "
302+ "com outro aguardável retornado por :meth:`~object.__anext__`, ele inicia de "
303+ "onde parou. Veja :pep:`492` e :pep:`525`."
293304
294305#: ../../glossary.rst:125
295306msgid "asynchronous iterable"
@@ -301,6 +312,9 @@ msgid ""
301312"return an :term:`asynchronous iterator` from its :meth:`~object.__aiter__` "
302313"method. Introduced by :pep:`492`."
303314msgstr ""
315+ "Um objeto que pode ser usado em uma instrução :keyword:`async for`. Deve "
316+ "retornar um :term:`iterador assíncrono` do seu método :meth:`~object."
317+ "__aiter__`. Introduzido por :pep:`492`."
304318
305319#: ../../glossary.rst:130
306320msgid "asynchronous iterator"
@@ -314,6 +328,12 @@ msgid ""
314328"an asynchronous iterator's :meth:`~object.__anext__` method until it raises "
315329"a :exc:`StopAsyncIteration` exception. Introduced by :pep:`492`."
316330msgstr ""
331+ "Um objeto que implementa os métodos :meth:`~object.__aiter__` e :meth:"
332+ "`~object.__anext__`. :meth:`~object.__anext__` deve retornar um objeto :term:"
333+ "`aguardável <awaitable>`. :keyword:`async for` resolve os aguardáveis "
334+ "retornados por um método :meth:`~object.__anext__` do iterador assíncrono "
335+ "até que ele levante uma exceção :exc:`StopAsyncIteration`. Introduzido pela :"
336+ "pep:`492`."
317337
318338#: ../../glossary.rst:137
319339msgid "attribute"
@@ -353,6 +373,9 @@ msgid ""
353373"term:`coroutine` or an object with an :meth:`~object.__await__` method. See "
354374"also :pep:`492`."
355375msgstr ""
376+ "Um objeto que pode ser usado em uma expressão :keyword:`await`. Pode ser "
377+ "uma :term:`corrotina` ou um objeto com um método :meth:`~object.__await__`. "
378+ "Veja também a :pep:`492`."
356379
357380#: ../../glossary.rst:154
358381msgid "BDFL"
0 commit comments