@@ -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 "
@@ -3083,10 +3084,10 @@ msgstr ""
30833084
30843085#: ../Doc/reference/datamodel.rst:1971
30853086msgid ""
3086- "By default, the :meth:`__hash__` values of str and bytes objects are \" salted "
3087- "\" with an unpredictable random value. Although they remain constant within "
3088- "an individual Python process, they are not predictable between repeated "
3089- "invocations of Python."
3087+ "By default, the :meth:`__hash__` values of str and bytes objects are "
3088+ "\" salted \" with an unpredictable random value. Although they remain "
3089+ "constant within an individual Python process, they are not predictable "
3090+ "between repeated invocations of Python."
30903091msgstr ""
30913092"Por defecto los valores de objetos str y bytes de :meth:`__hash__` son "
30923093"“salados” con un valor aleatorio impredecible. Aunque se mantienen "
@@ -3396,9 +3397,9 @@ msgid ""
33963397"The following methods only apply when an instance of the class containing "
33973398"the method (a so-called *descriptor* class) appears in an *owner* class (the "
33983399"descriptor must be in either the owner's class dictionary or in the class "
3399- "dictionary for one of its parents). In the examples below, \" the attribute "
3400- "\" refers to the attribute whose name is the key of the property in the "
3401- "owner class' :attr:`~object.__dict__`."
3400+ "dictionary for one of its parents). In the examples below, \" the "
3401+ "attribute \" refers to the attribute whose name is the key of the property in "
3402+ "the owner class' :attr:`~object.__dict__`."
34023403msgstr ""
34033404"Los siguientes métodos solo aplican cuando una instancia de clase que "
34043405"contiene el método (llamado clase *descriptora*) aparece en una clase "
@@ -4991,16 +4992,16 @@ msgstr ""
49914992
49924993#: ../Doc/reference/datamodel.rst:3060
49934994msgid ""
4994- "These methods are called to implement the binary arithmetic operations (`` "
4995- "+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, "
4996- "`` **``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to evaluate the "
4997- "expression ``x + y``, where *x* is an instance of a class that has an :meth: "
4998- "`__add__` method, ``type(x).__add__(x, y)`` is called. The :meth :"
4999- "`__divmod__` method should be the equivalent to using :meth:`__floordiv__` "
5000- "and :meth:`__mod__`; it should not be related to :meth:`__truediv__`. Note "
5001- "that :meth:`__pow__` should be defined to accept an optional third argument "
5002- "if the ternary version of the built-in :func:`pow` function is to be "
5003- "supported."
4995+ "These methods are called to implement the binary arithmetic operations "
4996+ "(`` +``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:"
4997+ "`pow`, `` **``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to "
4998+ "evaluate the expression ``x + y``, where *x* is an instance of a class that "
4999+ "has an :meth: `__add__` method, ``type(x).__add__(x, y)`` is called. The :"
5000+ "meth: `__divmod__` method should be the equivalent to using :meth:"
5001+ "`__floordiv__` and :meth:`__mod__`; it should not be related to :meth:"
5002+ "`__truediv__`. Note that :meth:`__pow__` should be defined to accept an "
5003+ "optional third argument if the ternary version of the built-in :func:`pow` "
5004+ "function is to be supported."
50045005msgstr ""
50055006"Estos métodos se llaman para implementar las operaciones aritméticas "
50065007"binarias (``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :"
@@ -5025,9 +5026,9 @@ msgstr ""
50255026#: ../Doc/reference/datamodel.rst:3094
50265027#, fuzzy
50275028msgid ""
5028- "These methods are called to implement the binary arithmetic operations (`` "
5029- "+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, "
5030- "``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) "
5029+ "These methods are called to implement the binary arithmetic operations "
5030+ "(`` +``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:"
5031+ "`pow`, ` `**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) "
50315032"operands. These functions are only called if the left operand does not "
50325033"support the corresponding operation [#]_ and the operands are of different "
50335034"types. [#]_ For instance, to evaluate the expression ``x - y``, where *y* is "
@@ -5105,8 +5106,8 @@ msgid ""
51055106"Called to implement the unary arithmetic operations (``-``, ``+``, :func:"
51065107"`abs` and ``~``)."
51075108msgstr ""
5108- "Es llamado para implementar las operaciones aritméticas unarias (``-``, `` "
5109- "+``, :func:`abs` and ``~``)."
5109+ "Es llamado para implementar las operaciones aritméticas unarias (``-``, "
5110+ "`` +``, :func:`abs` and ``~``)."
51105111
51115112#: ../Doc/reference/datamodel.rst:3168
51125113msgid ""
0 commit comments