You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
"``NotImplemented`` en el caso de una comparación falsa: ``True if x is y "
"else NotImplemented``. Para :meth:`__ne__`, por defecto delega a :meth:"
"`__eq__` e invierte el resultado a menos que sea ``NotImplemented``. No hay "
"otras relaciones implícitas entre los operadores de comparación o "
"implementaciones predeterminadas; por ejemplo, la verdad de ``(x <y o x == "
"y)`` no implica ``x <= y``. Para generar automáticamente operaciones de "
"pedido a partir de una sola operación raíz, consulte :func:`functools."
"total_ordering`."
#: ../Doc/reference/datamodel.rst:1406
msgid ""
Expand DownExpand Up
@@ -2688,12 +2702,17 @@ msgid ""
"Raises an :ref:`auditing event <auditing>` ``object.__getattr__`` with "
"arguments ``obj``, ``name``."
msgstr ""
"Lanza un :ref:`evento de auditoría <auditing>` ``object.__getattr__`` con "
"argumentos ``obj``, ``name``."
#: ../Doc/reference/datamodel.rst:1564
msgid ""
"For certain sensitive attribute accesses, raises an :ref:`auditing event "
"<auditing>` ``object.__getattr__`` with arguments ``obj`` and ``name``."
msgstr ""
"Para ciertos accesos a atributos sensibles, lanza un :ref:`evento de "
"auditoría <auditing>` ``object.__getattr__`` con los argumentos ``obj`` y "
"``name``."
#: ../Doc/reference/datamodel.rst:1571
msgid ""
Expand DownExpand Up
@@ -2721,13 +2740,18 @@ msgid ""
"Raises an :ref:`auditing event <auditing>` ``object.__setattr__`` with "
"arguments ``obj``, ``name``, ``value``."
msgstr ""
"Lanza un :ref:`evento de auditoría <auditing>` ``object.__setattr__`` con "
"argumentos ``obj``, ``name``, ``value``."
#: ../Doc/reference/datamodel.rst:1581
msgid ""
"For certain sensitive attribute assignments, raises an :ref:`auditing event "
"<auditing>` ``object.__setattr__`` with arguments ``obj``, ``name``, "
"``value``."
msgstr ""
"Para ciertas asignaciones de atributos sensibles, genera un :ref:`evento de "
"auditoría <auditing>` ``object.__setattr__`` con argumentos ``obj``, "
"``name``, ``value``."
#: ../Doc/reference/datamodel.rst:1588
msgid ""
Expand All
@@ -2744,12 +2768,17 @@ msgid ""
"Raises an :ref:`auditing event <auditing>` ``object.__delattr__`` with "
"arguments ``obj``, ``name``."
msgstr ""
"Lanza un :ref:`evento de auditoría <auditing>` ``object.__delattr__`` con "
"argumentos ``obj``, ``name``."
#: ../Doc/reference/datamodel.rst:1593
msgid ""
"For certain sensitive attribute deletions, raises an :ref:`auditing event "
"<auditing>` ``object.__delattr__`` with arguments ``obj`` and ``name``."
msgstr ""
"Para ciertas eliminaciones de atributos sensibles, genera un :ref:`evento de "
"auditoría <auditing>` ``object.__delattr__`` con argumentos ``obj`` y "
"``name``."
#: ../Doc/reference/datamodel.rst:1600
msgid ""
Expand DownExpand Up
@@ -3088,9 +3117,10 @@ msgstr ""
"alguno, es un descriptor sin datos. Normalmente los descriptores de datos "
"definen ambos :meth:`__get__` y :meth:`__set__`, mientras que los "
"descriptores sin datos solo tienen el método :meth:`__get__`. Descriptores "
"de datos con :meth:`__set__` y :meth:`__get__` definidos siempre anulan una "
"re-definición en el diccionario de instancias. Por el contrario, los "
"descriptores sin datos pueden ser anulados por instancias."
"de datos con :meth:`__set__` y :meth:`__get__` (o :meth:`__delete__`) "
"definidos siempre anulan una re-definición en el diccionario de instancias. "
"Por el contrario, los descriptores sin datos pueden ser anulados por "
"instancias."
#: ../Doc/reference/datamodel.rst:1789
msgid ""
Expand DownExpand Up
@@ -4202,6 +4232,9 @@ msgid ""
"meth:`__ipow__` but returns ``NotImplemented`` would fail to fall back to "
"``x.__pow__(y)`` and ``y.__rpow__(x)``. This bug is fixed in Python 3.10."
msgstr ""
"Debido a un error en el mecanismo de envío de ``**=``, una clase que define :"
"meth:`__ipow__` pero retorna ``NotImplemented`` no podría volver a ``x."
"__pow__(y)`` y ``y.__rpow__(x)``. Este error se corrigió en Python 3.10."
#: ../Doc/reference/datamodel.rst:2465
msgid ""
Expand Down
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.