@@ -6595,6 +6595,8 @@ msgid ""
65956595"Return a :class:`types.MappingProxyType` that wraps the original dictionary "
65966596"to which the view refers."
65976597msgstr ""
6598+ "Retorna um :class:`types.MappingProxyType` que envolve o dicionário original "
6599+ "ao qual a visão se refere."
65986600
65996601#: ../../library/stdtypes.rst:4648
66006602msgid ""
@@ -6772,12 +6774,17 @@ msgid ""
67726774"Type Annotation Types --- :ref:`Generic Alias <types-genericalias>`, :ref:"
67736775"`Union <types-union>`"
67746776msgstr ""
6777+ "Tipos de anotação de tipo --- :ref:`Apelido genérico <types-genericalias>`, :"
6778+ "ref:`União <types-union>`"
67756779
67766780#: ../../library/stdtypes.rst:4774
67776781msgid ""
67786782"The core built-in types for :term:`type annotations <annotation>` are :ref:"
67796783"`Generic Alias <types-genericalias>` and :ref:`Union <types-union>`."
67806784msgstr ""
6785+ "Os principais tipos embutidos para :term:`anotações de tipo <annotation>` "
6786+ "são :ref:`Apelido genérico <types-genericalias>` e :ref:`União <types-"
6787+ "union>`."
67816788
67826789#: ../../library/stdtypes.rst:4781
67836790msgid "Generic Alias Type"
@@ -7118,6 +7125,9 @@ msgid ""
71187125"have correct ``__parameters__`` after substitution because :class:`typing."
71197126"ParamSpec` is intended primarily for static type checking."
71207127msgstr ""
7128+ "Um objeto ``GenericAlias`` com os parâmetros :class:`typing.ParamSpec` pode "
7129+ "não ter ``__parameters__`` correto após a substituição porque :class:`typing."
7130+ "ParamSpec` se destina principalmente à verificação de tipo estático."
71217131
71227132#: ../../library/stdtypes.rst:4970
71237133msgid ":pep:`585` -- \" Type Hinting Generics In Standard Collections\" "
@@ -7134,7 +7144,7 @@ msgstr ":ref:`Genéricos <generics>` -- Genéricos no módulo :mod:`typing`."
71347144
71357145#: ../../library/stdtypes.rst:4980
71367146msgid "Union Type"
7137- msgstr ""
7147+ msgstr "Tipo União "
71387148
71397149#: ../../library/stdtypes.rst:4986
71407150msgid ""
@@ -7144,6 +7154,11 @@ msgid ""
71447154"expression enables cleaner type hinting syntax compared to :data:`typing."
71457155"Union`."
71467156msgstr ""
7157+ "Um objeto união contém o valor da operação ``|`` (bit a bit ou) em vários :"
7158+ "ref:`objetos tipo <bltin-type-objects>`. Esses tipos são destinados "
7159+ "principalmente para :term:`anotações de tipo <annotation>`. A expressão de "
7160+ "tipo de união habilita a sintaxe de sugestão de tipo mais limpo em "
7161+ "comparação com :data:`typing.Union`."
71477162
71487163#: ../../library/stdtypes.rst:4993
71497164msgid ""
@@ -7152,23 +7167,29 @@ msgid ""
71527167"example, the following function expects an argument of type :class:`int` or :"
71537168"class:`float`::"
71547169msgstr ""
7170+ "Define um objeto união que contém os tipos *X*, *Y* e assim por diante. ``X "
7171+ "| Y`` significa X ou Y. É equivalente a ``typing.Union[X, Y]``. Por exemplo, "
7172+ "a seguinte função espera um argumento do tipo :class:`int` ou :class:"
7173+ "`float`::"
71557174
71567175#: ../../library/stdtypes.rst:5003
71577176msgid ""
71587177"Union objects can be tested for equality with other union objects. Details:"
71597178msgstr ""
7179+ "Os objetos união podem ser testados quanto à igualdade com outros objetos "
7180+ "união. Detalhes:"
71607181
71617182#: ../../library/stdtypes.rst:5005
71627183msgid "Unions of unions are flattened::"
7163- msgstr ""
7184+ msgstr "Uniões de uniões são achatadas:: "
71647185
71657186#: ../../library/stdtypes.rst:5009
71667187msgid "Redundant types are removed::"
7167- msgstr ""
7188+ msgstr "Tipos redundantes são removidos:: "
71687189
71697190#: ../../library/stdtypes.rst:5013
71707191msgid "When comparing unions, the order is ignored::"
7171- msgstr ""
7192+ msgstr "Ao comparar uniões, a ordem é ignorada:: "
71727193
71737194#: ../../library/stdtypes.rst:5017
71747195msgid "It is compatible with :data:`typing.Union`::"
0 commit comments