-
Notifications
You must be signed in to change notification settings - Fork 395
Traducción c-api/refcounting.po #3386
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 3.13
Are you sure you want to change the base?
Conversation
Entries missing translation, details follow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gracias por esta contribución! Ahí te dejo algunos comentarios.
Recuerda revisar las entradas marcadas como "fuzzy" en el archivo. Después de traducir, o de corregir la traducción existente, debés borrar la línea que dice
#, fuzzy
c-api/refcounting.po
Outdated
@@ -340,15 +368,23 @@ msgid "" | |||
"old value of *dst*, so that any code triggered as a side-effect of *dst* " | |||
"getting torn down no longer believes *dst* points to a valid object." | |||
msgstr "" | |||
"Eso termina asignando *dist* al valor *src* _antes de_ liberar la referencia " | |||
"al valor anterior de *dst*, para que cualquier código ejecutado como efecto " | |||
"secundario de *dst* siendo destruido ya no crea que *dist* señala a un " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"secundario de *dst* siendo destruido ya no crea que *dist* señala a un " | |
"secundario de *dst* siendo destruido ya no crea que *dst* señala a un " |
c-api/refcounting.po
Outdated
@@ -315,10 +340,13 @@ msgid "" | |||
"Macro safely releasing a :term:`strong reference` to object *dst* and " | |||
"setting *dst* to *src*." | |||
msgstr "" | |||
"Un macro que libera de forma segura un :term:`strong reference` al objeto " | |||
"*dist* y establece *dist* al valor *src*." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"*dist* y establece *dist* al valor *src*." | |
"*dst* y establece *dist* al valor *src*." |
c-api/refcounting.po
Outdated
"método :meth:`__del__`). Si las excepciones en dicho código no se " | ||
"propagan, el código ejecutado tendrá acceso libre a todas las variables " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"método :meth:`__del__`). Si las excepciones en dicho código no se " | |
"propagan, el código ejecutado tendrá acceso libre a todas las variables " | |
"método :meth:`__del__`). Si las excepciones en dicho código no se " | |
"método :meth:`~object.__del__`). Mientras las excepciones en dicho código no sean " | |
"propagadas, el código ejecutado tendrá acceso libre a todas las variables " |
c-api/refcounting.po
Outdated
"de una lista debe copiar una referencia al objeto eliminado en una variable " | ||
"temporal, actualizar la estructura de datos de la lista y luego llamar a :c:" | ||
"func:`Py_DECREF` para la variable temporal." | ||
"acceder desde una variable global deberia estar en un estado coherente antes " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"acceder desde una variable global deberia estar en un estado coherente antes " | |
"acceder desde una variable global debería estar en un estado coherente antes " |
c-api/refcounting.po
Outdated
|
||
#: ../Doc/c-api/refcounting.rst:37 | ||
msgid "" | ||
"On :ref:`Python build with Free Threading <free-threading-build>`, if " | ||
"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`." | ||
msgstr "" | ||
"En una :ref:`compilación de Python con Free Threading <free-threading-build> " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"En una :ref:`compilación de Python con Free Threading <free-threading-build> " | |
"En :ref:`compilación de Python con Free Threading <free-threading-build> " |
Co-authored-by: Marcos Medrano <786907+mmmarcos@users.noreply.github.com>
Closes #3260