@@ -455,53 +455,60 @@ msgstr ""
455455
456456#: ../../library/dis.rst:295
457457msgid "the line number, for the first instruction of each line"
458- msgstr ""
458+ msgstr "o número da linha, para a primeira instrução de cada linha "
459459
460460#: ../../library/dis.rst:296
461461msgid "the current instruction, indicated as ``-->``,"
462- msgstr ""
462+ msgstr "a instrução atual, indicada por ``-->``, "
463463
464464#: ../../library/dis.rst:297
465465msgid "a labelled instruction, indicated with ``>>``,"
466- msgstr ""
466+ msgstr "um rótulo da instrução, indicado com ``>>``, "
467467
468468#: ../../library/dis.rst:298
469469msgid "the address of the instruction,"
470- msgstr ""
470+ msgstr "o endereço da instrução "
471471
472472#: ../../library/dis.rst:299
473473msgid "the operation code name,"
474- msgstr ""
474+ msgstr "o nome do código da operação, "
475475
476476#: ../../library/dis.rst:300
477477msgid "operation parameters, and"
478- msgstr ""
478+ msgstr "os parâmetros da operação, e "
479479
480480#: ../../library/dis.rst:301
481481msgid "interpretation of the parameters in parentheses."
482- msgstr ""
482+ msgstr "a interpretação dos parâmetros, em parênteses. "
483483
484484#: ../../library/dis.rst:303
485485msgid ""
486486"The parameter interpretation recognizes local and global variable names, "
487487"constant values, branch targets, and compare operators."
488488msgstr ""
489+ "A interpretação dos parâmetros reconhece nomes de variáveis locais e "
490+ "globais, valores de constantes, alvos de ramificações, e operadores de "
491+ "comparação."
489492
490493#: ../../library/dis.rst:320
491494msgid ""
492495"Return an iterator over the instructions in the supplied function, method, "
493496"source code string or code object."
494497msgstr ""
498+ "Retorna um iterador sobre as instruções na função, método, string de código-"
499+ "fonte ou objeto de código fornecido."
495500
496501#: ../../library/dis.rst:323
497502msgid ""
498503"The iterator generates a series of :class:`Instruction` named tuples giving "
499504"the details of each operation in the supplied code."
500505msgstr ""
506+ "O iterador gera uma série de tuplas nomeadas :class:`Instruction` contendo "
507+ "detalhes de cada operação no código fornecido."
501508
502509#: ../../library/dis.rst:331
503510msgid "The *adaptive* parameter works as it does in :func:`dis`."
504- msgstr ""
511+ msgstr "O parâmetro *adaptive* funciona assim como na função :func:`dis`. "
505512
506513#: ../../library/dis.rst:338
507514msgid ""
@@ -510,6 +517,10 @@ msgid ""
510517"populated (regardless of the value of *show_caches*) and it no longer "
511518"generates separate items for the cache entries."
512519msgstr ""
520+ "O parâmetro *show_caches* foi descontinuado e não tem mais efeito. O "
521+ "iterador gera as instâncias da :class:`Instruction` com o campo *cache_info* "
522+ "populado (independentemente do valor de *show_caches*) e não gera mais items "
523+ "separados para as entradas de cache."
513524
514525#: ../../library/dis.rst:346
515526msgid ""
@@ -518,28 +529,40 @@ msgid ""
518529"of lines in the source code. They are generated as ``(offset, lineno)`` "
519530"pairs."
520531msgstr ""
532+ "Essa função geradora usa o método :meth:`~codeobject.co_lines` do :ref:"
533+ "`objeto de código <code-objects>` *code* para encontrar as posições que "
534+ "correspondem aos inícios de cada linha do código-fonte. Elas são geradas em "
535+ "pares ``(offset, lineno)``."
521536
522537#: ../../library/dis.rst:351
523538msgid "Line numbers can be decreasing. Before, they were always increasing."
524539msgstr ""
540+ "Números de linhas podem ser decrescentes. Antes, eles eram sempre crescentes."
525541
526542#: ../../library/dis.rst:354
527543msgid ""
528544"The :pep:`626` :meth:`~codeobject.co_lines` method is used instead of the :"
529545"attr:`~codeobject.co_firstlineno` and :attr:`~codeobject.co_lnotab` "
530546"attributes of the :ref:`code object <code-objects>`."
531547msgstr ""
548+ "O método :meth:`~codeobject.co_lines` da :pep:`626` é usado ao invés dos "
549+ "atributos :attr:`~codeobject.co_firstlineno` e :attr:`~codeobject.co_lnotab` "
550+ "do :ref:`objeto de código <code-objects>`."
532551
533552#: ../../library/dis.rst:359
534553msgid ""
535554"Line numbers can be ``None`` for bytecode that does not map to source lines."
536555msgstr ""
556+ "Números de linha podem ser ``None`` para bytecode que não corresponde a um "
557+ "código-fonte."
537558
538559#: ../../library/dis.rst:365
539560msgid ""
540561"Detect all offsets in the raw compiled bytecode string *code* which are jump "
541562"targets, and return a list of these offsets."
542563msgstr ""
564+ "Detecta todas as posições na string de bytecode compilado bruto *code* que "
565+ "são alvos de pulos, e as retorna em uma lista."
543566
544567#: ../../library/dis.rst:371
545568msgid "Compute the stack effect of *opcode* with argument *oparg*."
0 commit comments