@@ -446,8 +446,8 @@ msgid ""
446
446
"representing the values ``False`` and ``True`` are the only Boolean objects. "
447
447
"The Boolean type is a subtype of the integer type, and Boolean values behave "
448
448
"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."
451
451
msgstr ""
452
452
"Estos representan los valores de verdad Falso y Verdadero. Los dos objetos "
453
453
"que representan los valores ``False`` y ``True`` son los únicos objetos "
@@ -1369,9 +1369,10 @@ msgid ""
1369
1369
"namespace implemented by a :class:`dictionary <dict>` object (this is the "
1370
1370
"dictionary referenced by the :attr:`~function.__globals__` attribute of "
1371
1371
"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)."
1375
1376
msgstr ""
1376
1377
"Los módulos son una unidad básica organizacional en código Python, y son "
1377
1378
"creados por el :ref:`sistema de importación <importsystem>` al ser invocados "
@@ -3083,10 +3084,10 @@ msgstr ""
3083
3084
3084
3085
#: ../Doc/reference/datamodel.rst:1971
3085
3086
msgid ""
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."
3090
3091
msgstr ""
3091
3092
"Por defecto los valores de objetos str y bytes de :meth:`__hash__` son "
3092
3093
"“salados” con un valor aleatorio impredecible. Aunque se mantienen "
@@ -3396,9 +3397,9 @@ msgid ""
3396
3397
"The following methods only apply when an instance of the class containing "
3397
3398
"the method (a so-called *descriptor* class) appears in an *owner* class (the "
3398
3399
"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__`."
3402
3403
msgstr ""
3403
3404
"Los siguientes métodos solo aplican cuando una instancia de clase que "
3404
3405
"contiene el método (llamado clase *descriptora*) aparece en una clase "
@@ -4991,16 +4992,16 @@ msgstr ""
4991
4992
4992
4993
#: ../Doc/reference/datamodel.rst:3060
4993
4994
msgid ""
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."
5004
5005
msgstr ""
5005
5006
"Estos métodos se llaman para implementar las operaciones aritméticas "
5006
5007
"binarias (``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :"
@@ -5025,9 +5026,9 @@ msgstr ""
5025
5026
#: ../Doc/reference/datamodel.rst:3094
5026
5027
#, fuzzy
5027
5028
msgid ""
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) "
5031
5032
"operands. These functions are only called if the left operand does not "
5032
5033
"support the corresponding operation [#]_ and the operands are of different "
5033
5034
"types. [#]_ For instance, to evaluate the expression ``x - y``, where *y* is "
@@ -5105,8 +5106,8 @@ msgid ""
5105
5106
"Called to implement the unary arithmetic operations (``-``, ``+``, :func:"
5106
5107
"`abs` and ``~``)."
5107
5108
msgstr ""
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 ``~``)."
5110
5111
5111
5112
#: ../Doc/reference/datamodel.rst:3168
5112
5113
msgid ""
0 commit comments