|
8 | 8 | # Marco Rougeth <[email protected]>, 2022 |
9 | 9 | # Danilo Lima <[email protected]>, 2023 |
10 | 10 | # Vitor Buxbaum Orlandi, 2023 |
11 | | -# Pedro Fonini, 2024 |
12 | 11 | # Rafael Fontenelle <[email protected]>, 2024 |
| 12 | +# Pedro Fonini, 2024 |
13 | 13 | # |
14 | 14 | #, fuzzy |
15 | 15 | msgid "" |
16 | 16 | msgstr "" |
17 | 17 | "Project-Id-Version: Python 3.13\n" |
18 | 18 | "Report-Msgid-Bugs-To: \n" |
19 | | -"POT-Creation-Date: 2024-06-28 14:15+0000\n" |
| 19 | +"POT-Creation-Date: 2024-07-05 14:16+0000\n" |
20 | 20 | "PO-Revision-Date: 2021-06-28 01:04+0000\n" |
21 | | -" Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n" |
| 21 | +"Last-Translator: Pedro Fonini, 2024\n" |
22 | 22 | "Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/" |
23 | 23 | "teams/5390/pt_BR/)\n" |
24 | 24 | "MIME-Version: 1.0\n" |
@@ -801,61 +801,78 @@ msgid "" |
801 | 801 | "itself. It is automatically hidden by all ``dis`` utilities, but can be " |
802 | 802 | "viewed with ``show_caches=True``." |
803 | 803 | msgstr "" |
| 804 | +"Ao invés de ser uma instrução de fato, este opcode é usado para demarcar " |
| 805 | +"espaço extra para o interpretador armazernar dados úteis diretamente no " |
| 806 | +"próprio bytecode. É escondido automaticamente por todas as utilidades do " |
| 807 | +"``dis``, mas pode ser visualizado com ``show_caches=True``." |
804 | 808 |
|
805 | 809 | #: ../../library/dis.rst:592 |
806 | 810 | msgid "" |
807 | 811 | "Logically, this space is part of the preceding instruction. Many opcodes " |
808 | 812 | "expect to be followed by an exact number of caches, and will instruct the " |
809 | 813 | "interpreter to skip over them at runtime." |
810 | 814 | msgstr "" |
| 815 | +"Do ponto de vista lógico, este espaço faz parde da instrução anterior. " |
| 816 | +"Muitos opcodes esperam ser seguidos por um número exato de caches, e " |
| 817 | +"instruem o interpretador a pulá-los em tempo de execução." |
811 | 818 |
|
812 | 819 | #: ../../library/dis.rst:596 |
813 | 820 | msgid "" |
814 | 821 | "Populated caches can look like arbitrary instructions, so great care should " |
815 | 822 | "be taken when reading or modifying raw, adaptive bytecode containing " |
816 | 823 | "quickened data." |
817 | 824 | msgstr "" |
| 825 | +"Caches populados podem se parecer com qualquer instrução, de forma que ler " |
| 826 | +"ou modificar bytecode adaptativo bruto contendo dados \"quickened\" requer " |
| 827 | +"muito cuidado." |
818 | 828 |
|
819 | 829 | #: ../../library/dis.rst:603 |
820 | 830 | msgid "**Unary operations**" |
821 | | -msgstr "" |
| 831 | +msgstr "**Operações unárias**" |
822 | 832 |
|
823 | 833 | #: ../../library/dis.rst:605 |
824 | 834 | msgid "" |
825 | 835 | "Unary operations take the top of the stack, apply the operation, and push " |
826 | 836 | "the result back on the stack." |
827 | 837 | msgstr "" |
| 838 | +"Operações unárias tiram o topo da pilha, aplicam a operação, e põem o " |
| 839 | +"resultado de volta na pilha." |
828 | 840 |
|
829 | 841 | #: ../../library/dis.rst:611 |
830 | 842 | msgid "Implements ``STACK[-1] = -STACK[-1]``." |
831 | | -msgstr "" |
| 843 | +msgstr "Implementa ``STACK[-1] = -STACK[-1]``." |
832 | 844 |
|
833 | 845 | #: ../../library/dis.rst:616 |
834 | 846 | msgid "Implements ``STACK[-1] = not STACK[-1]``." |
835 | | -msgstr "" |
| 847 | +msgstr "Implementa ``STACK[-1] = not STACK[-1]``." |
836 | 848 |
|
837 | 849 | #: ../../library/dis.rst:618 ../../library/dis.rst:1309 |
838 | 850 | #: ../../library/dis.rst:1325 |
839 | 851 | msgid "This instruction now requires an exact :class:`bool` operand." |
840 | 852 | msgstr "" |
| 853 | +"Essa instrução agora requer que o operando seja exatamente do tipo :class:" |
| 854 | +"`bool`." |
841 | 855 |
|
842 | 856 | #: ../../library/dis.rst:624 |
843 | 857 | msgid "Implements ``STACK[-1] = ~STACK[-1]``." |
844 | | -msgstr "" |
| 858 | +msgstr "Implementa ``STACK[-1] = ~STACK[-1]``." |
845 | 859 |
|
846 | 860 | #: ../../library/dis.rst:629 |
847 | 861 | msgid "Implements ``STACK[-1] = iter(STACK[-1])``." |
848 | | -msgstr "" |
| 862 | +msgstr "Implementa ``STACK[-1] = iter(STACK[-1])``." |
849 | 863 |
|
850 | 864 | #: ../../library/dis.rst:634 |
851 | 865 | msgid "" |
852 | 866 | "If ``STACK[-1]`` is a :term:`generator iterator` or :term:`coroutine` object " |
853 | 867 | "it is left as is. Otherwise, implements ``STACK[-1] = iter(STACK[-1])``." |
854 | 868 | msgstr "" |
| 869 | +"Se ``STACK[-1]`` for um :term:`iterador gerador` ou um objeto :term:" |
| 870 | +"`corrotina`, nada acontece. Caso contrário, implementa ``STACK[-1] = " |
| 871 | +"iter(STACK[-1])``." |
855 | 872 |
|
856 | 873 | #: ../../library/dis.rst:642 |
857 | 874 | msgid "Implements ``STACK[-1] = bool(STACK[-1])``." |
858 | | -msgstr "" |
| 875 | +msgstr "Implementa ``STACK[-1] = bool(STACK[-1])``." |
859 | 876 |
|
860 | 877 | #: ../../library/dis.rst:647 |
861 | 878 | msgid "**Binary and in-place operations**" |
|
0 commit comments