@@ -446,8 +446,8 @@ msgid ""
446446"representing the values ``False`` and ``True`` are the only Boolean objects. "
447447"The Boolean type is a subtype of the integer type, and Boolean values behave "
448448"like the values 0 and 1, respectively, in almost all contexts, the exception "
449- "being that when converted to a string, the strings ``\" False\" `` or `` \" True "
450- "\" `` are returned, respectively."
449+ "being that when converted to a string, the strings ``\" False\" `` or "
450+ "`` \" True \" `` are returned, respectively."
451451msgstr ""
452452"Estos representan los valores de verdad Falso y Verdadero. Los dos objetos "
453453"que representan los valores ``False`` y ``True`` son los únicos objetos "
@@ -1369,9 +1369,10 @@ msgid ""
13691369"namespace implemented by a :class:`dictionary <dict>` object (this is the "
13701370"dictionary referenced by the :attr:`~function.__globals__` attribute of "
13711371"functions defined in the module). Attribute references are translated to "
1372- "lookups in this dictionary, e.g., ``m.x`` is equivalent to ``m.__dict__[\" x"
1373- "\" ]``. A module object does not contain the code object used to initialize "
1374- "the module (since it isn't needed once the initialization is done)."
1372+ "lookups in this dictionary, e.g., ``m.x`` is equivalent to ``m."
1373+ "__dict__[\" x\" ]``. A module object does not contain the code object used to "
1374+ "initialize the module (since it isn't needed once the initialization is "
1375+ "done)."
13751376msgstr ""
13761377"Los módulos son una unidad básica organizacional en código Python, y son "
13771378"creados por el :ref:`sistema de importación <importsystem>` al ser invocados "
@@ -2213,8 +2214,8 @@ msgid ""
22132214msgstr ""
22142215"El :ref:`objeto de código <code-objects>` que se está ejecutando en este "
22152216"marco. Al acceder a este atributo se lanza un :ref:`evento de auditoría "
2216- "<auditing>` ``object.__getattr__`` con los argumentos ``obj`` y `` \" f_code "
2217- "\" ``."
2217+ "<auditing>` ``object.__getattr__`` con los argumentos ``obj`` y "
2218+ "`` \" f_code \" ``."
22182219
22192220# Cómo puede quedar esta traducción, para que no quede como: "hace referencia a un :term:`optimized scope`"?
22202221#: ../Doc/reference/datamodel.rst:1417
@@ -3139,10 +3140,10 @@ msgstr ""
31393140
31403141#: ../Doc/reference/datamodel.rst:1971
31413142msgid ""
3142- "By default, the :meth:`__hash__` values of str and bytes objects are \" salted "
3143- "\" with an unpredictable random value. Although they remain constant within "
3144- "an individual Python process, they are not predictable between repeated "
3145- "invocations of Python."
3143+ "By default, the :meth:`__hash__` values of str and bytes objects are "
3144+ "\" salted \" with an unpredictable random value. Although they remain "
3145+ "constant within an individual Python process, they are not predictable "
3146+ "between repeated invocations of Python."
31463147msgstr ""
31473148"Por defecto los valores de objetos str y bytes de :meth:`__hash__` son "
31483149"“salados” con un valor aleatorio impredecible. Aunque se mantienen "
@@ -3461,9 +3462,9 @@ msgid ""
34613462"The following methods only apply when an instance of the class containing "
34623463"the method (a so-called *descriptor* class) appears in an *owner* class (the "
34633464"descriptor must be in either the owner's class dictionary or in the class "
3464- "dictionary for one of its parents). In the examples below, \" the attribute "
3465- "\" refers to the attribute whose name is the key of the property in the "
3466- "owner class' :attr:`~object.__dict__`."
3465+ "dictionary for one of its parents). In the examples below, \" the "
3466+ "attribute \" refers to the attribute whose name is the key of the property in "
3467+ "the owner class' :attr:`~object.__dict__`."
34673468msgstr ""
34683469"Los siguientes métodos solo aplican cuando una instancia de clase que "
34693470"contiene el método (llamado clase *descriptora*) aparece en una clase "
@@ -5121,16 +5122,16 @@ msgstr ""
51215122
51225123#: ../Doc/reference/datamodel.rst:3060
51235124msgid ""
5124- "These methods are called to implement the binary arithmetic operations (`` "
5125- "+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, "
5126- "`` **``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to evaluate the "
5127- "expression ``x + y``, where *x* is an instance of a class that has an :meth: "
5128- "`__add__` method, ``type(x).__add__(x, y)`` is called. The :meth :"
5129- "`__divmod__` method should be the equivalent to using :meth:`__floordiv__` "
5130- "and :meth:`__mod__`; it should not be related to :meth:`__truediv__`. Note "
5131- "that :meth:`__pow__` should be defined to accept an optional third argument "
5132- "if the ternary version of the built-in :func:`pow` function is to be "
5133- "supported."
5125+ "These methods are called to implement the binary arithmetic operations "
5126+ "(`` +``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:"
5127+ "`pow`, `` **``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to "
5128+ "evaluate the expression ``x + y``, where *x* is an instance of a class that "
5129+ "has an :meth: `__add__` method, ``type(x).__add__(x, y)`` is called. The :"
5130+ "meth: `__divmod__` method should be the equivalent to using :meth:"
5131+ "`__floordiv__` and :meth:`__mod__`; it should not be related to :meth:"
5132+ "`__truediv__`. Note that :meth:`__pow__` should be defined to accept an "
5133+ "optional third argument if the ternary version of the built-in :func:`pow` "
5134+ "function is to be supported."
51345135msgstr ""
51355136"Estos métodos se llaman para implementar las operaciones aritméticas "
51365137"binarias (``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :"
@@ -5153,9 +5154,9 @@ msgstr ""
51535154
51545155#: ../Doc/reference/datamodel.rst:3094
51555156msgid ""
5156- "These methods are called to implement the binary arithmetic operations (`` "
5157- "+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, "
5158- "``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) "
5157+ "These methods are called to implement the binary arithmetic operations "
5158+ "(`` +``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:"
5159+ "`pow`, ` `**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) "
51595160"operands. These functions are only called if the left operand does not "
51605161"support the corresponding operation [#]_ and the operands are of different "
51615162"types. [#]_ For instance, to evaluate the expression ``x - y``, where *y* is "
@@ -5233,8 +5234,8 @@ msgid ""
52335234"Called to implement the unary arithmetic operations (``-``, ``+``, :func:"
52345235"`abs` and ``~``)."
52355236msgstr ""
5236- "Es llamado para implementar las operaciones aritméticas unarias (``-``, `` "
5237- "+``, :func:`abs` and ``~``)."
5237+ "Es llamado para implementar las operaciones aritméticas unarias (``-``, "
5238+ "`` +``, :func:`abs` and ``~``)."
52385239
52395240#: ../Doc/reference/datamodel.rst:3168
52405241msgid ""
0 commit comments