@@ -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-09-17 03:50 +0000\n "
15+ "POT-Creation-Date :2025-09-29 15:02 +0000\n "
1616"PO-Revision-Date :2025-09-15 01:04+0000\n "
1717"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team :Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -768,6 +768,10 @@ msgid ""
768768"cache format and data is the contents of the cache. ``cache_info`` is "
769769"``None`` if the instruction does not have caches."
770770msgstr ""
771+ "Informações sobre as entradas de cache desta instrução, como tripletos do "
772+ "formato ``(nome, tamanho, dados)``, onde ``nome`` e ``tamanho`` descrevem o "
773+ "formato do cache e dados são o conteúdo do cache. ``cache_info`` é ``None`` "
774+ "se a instrução não tiver caches."
771775
772776#: ../../library/dis.rst:507
773777msgid "Field ``positions`` is added."
@@ -827,7 +831,7 @@ msgstr "Remove o item no topo da pilha::"
827831
828832#: ../../library/dis.rst:549
829833msgid "STACK.pop()"
830- msgstr ""
834+ msgstr "STACK.pop() "
831835
832836#: ../../library/dis.rst:554
833837msgid ""
@@ -855,6 +859,8 @@ msgid ""
855859"assert i > 0\n"
856860"STACK.append(STACK[-i])"
857861msgstr ""
862+ "assert i > 0\n"
863+ "STACK.append(STACK[-i])"
858864
859865#: ../../library/dis.rst:582
860866msgid "Swap the top of the stack with the i-th element::"
@@ -981,6 +987,9 @@ msgid ""
981987"lhs = STACK.pop()\n"
982988"STACK.append(lhs op rhs)"
983989msgstr ""
990+ "rhs = STACK.pop()\n"
991+ "lhs = STACK.pop()\n"
992+ "STACK.append(lhs op rhs)"
984993
985994#: ../../library/dis.rst:675 ../../library/dis.rst:684
986995#: ../../library/dis.rst:694 ../../library/dis.rst:702
@@ -1006,13 +1015,20 @@ msgid ""
10061015"value = STACK.pop()\n"
10071016"container[key] = value"
10081017msgstr ""
1018+ "key = STACK.pop()\n"
1019+ "container = STACK.pop()\n"
1020+ "value = STACK.pop()\n"
1021+ "container[key] = value"
10091022
10101023#: ../../library/dis.rst:696
10111024msgid ""
10121025"key = STACK.pop()\n"
10131026"container = STACK.pop()\n"
10141027"del container[key]"
10151028msgstr ""
1029+ "key = STACK.pop()\n"
1030+ "container = STACK.pop()\n"
1031+ "del container[key]"
10161032
10171033#: ../../library/dis.rst:704
10181034msgid ""
@@ -1021,6 +1037,10 @@ msgid ""
10211037"container = STACK.pop()\n"
10221038"STACK.append(container[start:end])"
10231039msgstr ""
1040+ "end = STACK.pop()\n"
1041+ "start = STACK.pop()\n"
1042+ "container = STACK.pop()\n"
1043+ "STACK.append(container[start:end])"
10241044
10251045#: ../../library/dis.rst:716
10261046msgid ""
@@ -1030,6 +1050,11 @@ msgid ""
10301050"values = STACK.pop()\n"
10311051"container[start:end] = value"
10321052msgstr ""
1053+ "end = STACK.pop()\n"
1054+ "start = STACK.pop()\n"
1055+ "container = STACK.pop()\n"
1056+ "values = STACK.pop()\n"
1057+ "container[start:end] = value"
10331058
10341059#: ../../library/dis.rst:725
10351060msgid "**Coroutine opcodes**"
@@ -1135,6 +1160,8 @@ msgid ""
11351160"item = STACK.pop()\n"
11361161"set.add(STACK[-i], item)"
11371162msgstr ""
1163+ "item = STACK.pop()\n"
1164+ "set.add(STACK[-i], item)"
11381165
11391166#: ../../library/dis.rst:807
11401167msgid "Used to implement set comprehensions."
@@ -1145,6 +1172,8 @@ msgid ""
11451172"item = STACK.pop()\n"
11461173"list.append(STACK[-i], item)"
11471174msgstr ""
1175+ "item = STACK.pop()\n"
1176+ "list.append(STACK[-i], item)"
11481177
11491178#: ../../library/dis.rst:817
11501179msgid "Used to implement list comprehensions."
@@ -1156,6 +1185,9 @@ msgid ""
11561185"key = STACK.pop()\n"
11571186"dict.__setitem__(STACK[-i], key, value)"
11581187msgstr ""
1188+ "value = STACK.pop()\n"
1189+ "key = STACK.pop()\n"
1190+ "dict.__setitem__(STACK[-i], key, value)"
11591191
11601192#: ../../library/dis.rst:828
11611193msgid "Used to implement dict comprehensions."
@@ -1338,6 +1370,8 @@ msgid ""
13381370"Perform ``STACK.append(len(STACK[-1]))``. Used in :keyword:`match` "
13391371"statements where comparison with structure of pattern is needed."
13401372msgstr ""
1373+ "Executa ``STACK.append(len(STACK[-1]))``. Usado em instruções :keyword:"
1374+ "`match` onde a comparação com a estrutura do padrão é necessária."
13411375
13421376#: ../../library/dis.rst:972
13431377msgid ""
@@ -1418,6 +1452,8 @@ msgid ""
14181452"assert(len(STACK[-1]) == count)\n"
14191453"STACK.extend(STACK.pop()[:-count-1:-1])"
14201454msgstr ""
1455+ "assert(len(STACK[-1]) == count)\n"
1456+ "STACK.extend(STACK.pop()[:-count-1:-1])"
14211457
14221458#: ../../library/dis.rst:1027
14231459msgid ""
@@ -1467,6 +1503,9 @@ msgid ""
14671503"value = STACK.pop()\n"
14681504"obj.name = value"
14691505msgstr ""
1506+ "obj = STACK.pop()\n"
1507+ "value = STACK.pop()\n"
1508+ "obj.name = value"
14701509
14711510#: ../../library/dis.rst:1052
14721511msgid ""
@@ -1481,6 +1520,8 @@ msgid ""
14811520"obj = STACK.pop()\n"
14821521"del obj.name"
14831522msgstr ""
1523+ "obj = STACK.pop()\n"
1524+ "del obj.name"
14841525
14851526#: ../../library/dis.rst:1062
14861527msgid ""
@@ -1518,6 +1559,9 @@ msgid ""
15181559"prepare namespace dictionaries for :opcode:`LOAD_FROM_DICT_OR_DEREF` and :"
15191560"opcode:`LOAD_FROM_DICT_OR_GLOBALS`."
15201561msgstr ""
1562+ "Envia uma referência ao dicionário local para a pilha. Isso é usado para "
1563+ "preparar dicionários de espaço de nomes para :opcode:"
1564+ "`LOAD_FROM_DICT_OR_DEREF` e :opcode:`LOAD_FROM_DICT_OR_GLOBALS`."
15211565
15221566#: ../../library/dis.rst:1098
15231567msgid ""
@@ -1527,6 +1571,11 @@ msgid ""
15271571"variables in :ref:`annotation scopes <annotation-scopes>` within class "
15281572"bodies."
15291573msgstr ""
1574+ "Extrai um mapeamento da pilha e procura o valor de ``co_names[namei]``. Se o "
1575+ "nome não for encontrado, procura-o nas variáveis globais e, em seguida, nas "
1576+ "variáveis embutidas, semelhante a :opcode:`LOAD_GLOBAL`. Isso é usado para "
1577+ "carregar variáveis globais em :ref:`escopos de anotação <annotation-scopes>` "
1578+ "dentro dos corpos de classe."
15301579
15311580#: ../../library/dis.rst:1109
15321581msgid ""