- Notifications
You must be signed in to change notification settings - Fork396
Traducido archivo reference/datamodel#3351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
xooseph wants to merge12 commits intopython:3.13Choose a base branch fromxooseph:traduccion-datamodel
base:3.13
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Open
Changes from1 commit
Commits
Show all changes
12 commits Select commitHold shift + click to select a range
2a5f958
Traducido al 80%
xoosephb99f9ff
Apply suggestions from code review
xooseph8be5cfb
Correcciones en local
xoosephee1c2f1
Traducido al 85%
xooseph9da1929
Apply powrap
xooseph9af32fe
Typo
xooseph66ef803
Traducido al 90%
xoosephd25cd59
Traducido al 100%
xoosephf85a9f7
Powrap
xooseph7bdfd51
Apply suggestions from code review
xoosephd64b281
Cambiado 'compensación' por 'desplazamiento'
xoosephbe539b0
Traducido término optimized scope
xoosephFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Powrap
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commitf85a9f75af127e4eaeff2695a01aa71bbe50397d
There are no files selected for viewing
59 changes: 30 additions & 29 deletionsreference/datamodel.po
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -446,8 +446,8 @@ msgid "" | ||
"representing the values ``False`` and ``True`` are the only Boolean objects. " | ||
"The Boolean type is a subtype of the integer type, and Boolean values behave " | ||
"like the values 0 and 1, respectively, in almost all contexts, the exception " | ||
"being that when converted to a string, the strings ``\"False\"`` or " | ||
"``\"True\"`` are returned, respectively." | ||
msgstr "" | ||
"Estos representan los valores de verdad Falso y Verdadero. Los dos objetos " | ||
"que representan los valores ``False`` y ``True`` son los únicos objetos " | ||
@@ -1369,9 +1369,10 @@ msgid "" | ||
"namespace implemented by a :class:`dictionary <dict>` object (this is the " | ||
"dictionary referenced by the :attr:`~function.__globals__` attribute of " | ||
"functions defined in the module). Attribute references are translated to " | ||
"lookups in this dictionary, e.g., ``m.x`` is equivalent to ``m." | ||
"__dict__[\"x\"]``. A module object does not contain the code object used to " | ||
"initialize the module (since it isn't needed once the initialization is " | ||
"done)." | ||
msgstr "" | ||
"Los módulos son una unidad básica organizacional en código Python, y son " | ||
"creados por el :ref:`sistema de importación <importsystem>` al ser invocados " | ||
@@ -2213,8 +2214,8 @@ msgid "" | ||
msgstr "" | ||
"El :ref:`objeto de código <code-objects>` que se está ejecutando en este " | ||
"marco. Al acceder a este atributo se lanza un :ref:`evento de auditoría " | ||
"<auditing>` ``object.__getattr__`` con los argumentos ``obj`` y " | ||
"``\"f_code\"``." | ||
# Cómo puede quedar esta traducción, para que no quede como: "hace referencia a un :term:`optimized scope`"? | ||
rtobar marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/reference/datamodel.rst:1417 | ||
@@ -3139,10 +3140,10 @@ msgstr "" | ||
#: ../Doc/reference/datamodel.rst:1971 | ||
msgid "" | ||
"By default, the :meth:`__hash__` values of str and bytes objects are " | ||
"\"salted\" with an unpredictable random value. Although they remain " | ||
"constant withinan individual Python process, they are not predictable " | ||
"between repeatedinvocations of Python." | ||
msgstr "" | ||
"Por defecto los valores de objetos str y bytes de :meth:`__hash__` son " | ||
"“salados” con un valor aleatorio impredecible. Aunque se mantienen " | ||
@@ -3461,9 +3462,9 @@ msgid "" | ||
"The following methods only apply when an instance of the class containing " | ||
"the method (a so-called *descriptor* class) appears in an *owner* class (the " | ||
"descriptor must be in either the owner's class dictionary or in the class " | ||
"dictionary for one of its parents). In the examples below, \"the " | ||
"attribute\" refers to the attribute whose name is the key of the property in " | ||
"theowner class' :attr:`~object.__dict__`." | ||
msgstr "" | ||
"Los siguientes métodos solo aplican cuando una instancia de clase que " | ||
"contiene el método (llamado clase *descriptora*) aparece en una clase " | ||
@@ -5121,16 +5122,16 @@ msgstr "" | ||
#: ../Doc/reference/datamodel.rst:3060 | ||
msgid "" | ||
"These methods are called to implement the binary arithmetic operations " | ||
"(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:" | ||
"`pow`, ``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to " | ||
"evaluate theexpression ``x + y``, where *x* is an instance of a class that " | ||
"has an :meth:`__add__` method, ``type(x).__add__(x, y)`` is called. The :" | ||
"meth:`__divmod__` method should be the equivalent to using :meth:" | ||
"`__floordiv__`and :meth:`__mod__`; it should not be related to :meth:" | ||
"`__truediv__`. Notethat :meth:`__pow__` should be defined to accept an " | ||
"optional third argumentif the ternary version of the built-in :func:`pow` " | ||
"function is to besupported." | ||
msgstr "" | ||
"Estos métodos se llaman para implementar las operaciones aritméticas " | ||
"binarias (``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :" | ||
@@ -5153,9 +5154,9 @@ msgstr "" | ||
#: ../Doc/reference/datamodel.rst:3094 | ||
msgid "" | ||
"These methods are called to implement the binary arithmetic operations " | ||
"(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:" | ||
"`pow`, ``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) " | ||
"operands. These functions are only called if the left operand does not " | ||
"support the corresponding operation [#]_ and the operands are of different " | ||
"types. [#]_ For instance, to evaluate the expression ``x - y``, where *y* is " | ||
@@ -5233,8 +5234,8 @@ msgid "" | ||
"Called to implement the unary arithmetic operations (``-``, ``+``, :func:" | ||
"`abs` and ``~``)." | ||
msgstr "" | ||
"Es llamado para implementar las operaciones aritméticas unarias (``-``, " | ||
"``+``, :func:`abs` and ``~``)." | ||
#: ../Doc/reference/datamodel.rst:3168 | ||
msgid "" | ||
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
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.