@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.13\n "
14
14
"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 "
16
16
"PO-Revision-Date : 2025-09-15 01:04+0000\n "
17
17
"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
18
18
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -768,6 +768,10 @@ msgid ""
768
768
"cache format and data is the contents of the cache. ``cache_info`` is "
769
769
"``None`` if the instruction does not have caches."
770
770
msgstr ""
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."
771
775
772
776
#: ../../library/dis.rst:507
773
777
msgid "Field ``positions`` is added."
@@ -827,7 +831,7 @@ msgstr "Remove o item no topo da pilha::"
827
831
828
832
#: ../../library/dis.rst:549
829
833
msgid "STACK.pop()"
830
- msgstr ""
834
+ msgstr "STACK.pop() "
831
835
832
836
#: ../../library/dis.rst:554
833
837
msgid ""
@@ -855,6 +859,8 @@ msgid ""
855
859
"assert i > 0\n"
856
860
"STACK.append(STACK[-i])"
857
861
msgstr ""
862
+ "assert i > 0\n"
863
+ "STACK.append(STACK[-i])"
858
864
859
865
#: ../../library/dis.rst:582
860
866
msgid "Swap the top of the stack with the i-th element::"
@@ -981,6 +987,9 @@ msgid ""
981
987
"lhs = STACK.pop()\n"
982
988
"STACK.append(lhs op rhs)"
983
989
msgstr ""
990
+ "rhs = STACK.pop()\n"
991
+ "lhs = STACK.pop()\n"
992
+ "STACK.append(lhs op rhs)"
984
993
985
994
#: ../../library/dis.rst:675 ../../library/dis.rst:684
986
995
#: ../../library/dis.rst:694 ../../library/dis.rst:702
@@ -1006,13 +1015,20 @@ msgid ""
1006
1015
"value = STACK.pop()\n"
1007
1016
"container[key] = value"
1008
1017
msgstr ""
1018
+ "key = STACK.pop()\n"
1019
+ "container = STACK.pop()\n"
1020
+ "value = STACK.pop()\n"
1021
+ "container[key] = value"
1009
1022
1010
1023
#: ../../library/dis.rst:696
1011
1024
msgid ""
1012
1025
"key = STACK.pop()\n"
1013
1026
"container = STACK.pop()\n"
1014
1027
"del container[key]"
1015
1028
msgstr ""
1029
+ "key = STACK.pop()\n"
1030
+ "container = STACK.pop()\n"
1031
+ "del container[key]"
1016
1032
1017
1033
#: ../../library/dis.rst:704
1018
1034
msgid ""
@@ -1021,6 +1037,10 @@ msgid ""
1021
1037
"container = STACK.pop()\n"
1022
1038
"STACK.append(container[start:end])"
1023
1039
msgstr ""
1040
+ "end = STACK.pop()\n"
1041
+ "start = STACK.pop()\n"
1042
+ "container = STACK.pop()\n"
1043
+ "STACK.append(container[start:end])"
1024
1044
1025
1045
#: ../../library/dis.rst:716
1026
1046
msgid ""
@@ -1030,6 +1050,11 @@ msgid ""
1030
1050
"values = STACK.pop()\n"
1031
1051
"container[start:end] = value"
1032
1052
msgstr ""
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"
1033
1058
1034
1059
#: ../../library/dis.rst:725
1035
1060
msgid "**Coroutine opcodes**"
@@ -1135,6 +1160,8 @@ msgid ""
1135
1160
"item = STACK.pop()\n"
1136
1161
"set.add(STACK[-i], item)"
1137
1162
msgstr ""
1163
+ "item = STACK.pop()\n"
1164
+ "set.add(STACK[-i], item)"
1138
1165
1139
1166
#: ../../library/dis.rst:807
1140
1167
msgid "Used to implement set comprehensions."
@@ -1145,6 +1172,8 @@ msgid ""
1145
1172
"item = STACK.pop()\n"
1146
1173
"list.append(STACK[-i], item)"
1147
1174
msgstr ""
1175
+ "item = STACK.pop()\n"
1176
+ "list.append(STACK[-i], item)"
1148
1177
1149
1178
#: ../../library/dis.rst:817
1150
1179
msgid "Used to implement list comprehensions."
@@ -1156,6 +1185,9 @@ msgid ""
1156
1185
"key = STACK.pop()\n"
1157
1186
"dict.__setitem__(STACK[-i], key, value)"
1158
1187
msgstr ""
1188
+ "value = STACK.pop()\n"
1189
+ "key = STACK.pop()\n"
1190
+ "dict.__setitem__(STACK[-i], key, value)"
1159
1191
1160
1192
#: ../../library/dis.rst:828
1161
1193
msgid "Used to implement dict comprehensions."
@@ -1338,6 +1370,8 @@ msgid ""
1338
1370
"Perform ``STACK.append(len(STACK[-1]))``. Used in :keyword:`match` "
1339
1371
"statements where comparison with structure of pattern is needed."
1340
1372
msgstr ""
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."
1341
1375
1342
1376
#: ../../library/dis.rst:972
1343
1377
msgid ""
@@ -1418,6 +1452,8 @@ msgid ""
1418
1452
"assert(len(STACK[-1]) == count)\n"
1419
1453
"STACK.extend(STACK.pop()[:-count-1:-1])"
1420
1454
msgstr ""
1455
+ "assert(len(STACK[-1]) == count)\n"
1456
+ "STACK.extend(STACK.pop()[:-count-1:-1])"
1421
1457
1422
1458
#: ../../library/dis.rst:1027
1423
1459
msgid ""
@@ -1467,6 +1503,9 @@ msgid ""
1467
1503
"value = STACK.pop()\n"
1468
1504
"obj.name = value"
1469
1505
msgstr ""
1506
+ "obj = STACK.pop()\n"
1507
+ "value = STACK.pop()\n"
1508
+ "obj.name = value"
1470
1509
1471
1510
#: ../../library/dis.rst:1052
1472
1511
msgid ""
@@ -1481,6 +1520,8 @@ msgid ""
1481
1520
"obj = STACK.pop()\n"
1482
1521
"del obj.name"
1483
1522
msgstr ""
1523
+ "obj = STACK.pop()\n"
1524
+ "del obj.name"
1484
1525
1485
1526
#: ../../library/dis.rst:1062
1486
1527
msgid ""
@@ -1518,6 +1559,9 @@ msgid ""
1518
1559
"prepare namespace dictionaries for :opcode:`LOAD_FROM_DICT_OR_DEREF` and :"
1519
1560
"opcode:`LOAD_FROM_DICT_OR_GLOBALS`."
1520
1561
msgstr ""
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`."
1521
1565
1522
1566
#: ../../library/dis.rst:1098
1523
1567
msgid ""
@@ -1527,6 +1571,11 @@ msgid ""
1527
1571
"variables in :ref:`annotation scopes <annotation-scopes>` within class "
1528
1572
"bodies."
1529
1573
msgstr ""
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."
1530
1579
1531
1580
#: ../../library/dis.rst:1109
1532
1581
msgid ""
0 commit comments