@@ -26,7 +26,6 @@ msgid "Reference Counting"
2626msgstr "Conteo de referencias"
2727
2828#: ../Doc/c-api/refcounting.rst:10
29- # ; Matt: Spellcheck and clarity
3029#, fuzzy
3130msgid ""
3231"The functions and macros in this section are used for managing reference "
@@ -41,7 +40,6 @@ msgid "Get the reference count of the Python object *o*."
4140msgstr "Incrementar el recuento de referencia para el objeto *o*."
4241
4342#: ../Doc/c-api/refcounting.rst:18
44- # ; Matt: Added translation
4543msgid ""
4644"Note that the returned value may not actually reflect how many references to "
4745"the object are actually held. For example, some objects are :term:"
@@ -57,33 +55,28 @@ msgstr ""
5755
5856
5957#: ../Doc/c-api/refcounting.rst:24
60- # ; Matt: Added translation
6158msgid ""
6259"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count."
6360msgstr ""
6461"Usa la función :c:func:`Py_SET_REFCNT()` para establecer la cuenta de "
6562"referencias de un objeto."
6663
6764#: ../Doc/c-api/refcounting.rst:26
68- # ; Matt: Added translation
6965msgid ":c:func:`Py_REFCNT()` is changed to the inline static function."
7066msgstr ":c:func:`Py_REFCNT()` se convierte en una función estática en línea."
7167
7268
7369
7470#: ../Doc/c-api/refcounting.rst:29
75- # ; Matt: Added translation
7671msgid "The parameter type is no longer :c:expr:`const PyObject*`."
7772msgstr "El tipo de parámetro ya no es :c:expr:`const PyObject*`."
7873
7974#: ../Doc/c-api/refcounting.rst:35
80- # ; Matt: Spellcheck and clarity
8175#, fuzzy
8276msgid "Set the object *o* reference counter to *refcnt*."
8377msgstr "Establece la cuenta de referencias del objeto *o* al valor *refcnt*."
8478
8579#: ../Doc/c-api/refcounting.rst:37
86- # ; Matt: Added translation
8780msgid ""
8881"On :ref:`Python build with Free Threading <free-threading-build>`, if "
8982"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`."
@@ -94,18 +87,15 @@ msgstr ""
9487
9588#: ../Doc/c-api/refcounting.rst:40 ../Doc/c-api/refcounting.rst:53
9689#: ../Doc/c-api/refcounting.rst:119
97- # ; Matt: Added translation
9890msgid "This function has no effect on :term:`immortal` objects."
9991msgstr "Esta función no afecta a los objetos :term:`inmortales`."
10092
10193#: ../Doc/c-api/refcounting.rst:44 ../Doc/c-api/refcounting.rst:68
10294#: ../Doc/c-api/refcounting.rst:147
103- # ; Matt: Added translation
10495msgid "Immortal objects are not modified."
10596msgstr "Los objetos inmortales no se modifican."
10697
10798#: ../Doc/c-api/refcounting.rst:50
108- # ; Matt: Added translation
10999msgid ""
110100"Indicate taking a new :term:`strong reference` to object *o*, indicating it "
111101"is in use and should not be destroyed."
@@ -124,7 +114,6 @@ msgstr ""
124114"`Py_NewRef` se puede utilizar para crear un nuevo :term:`strong reference`."
125115
126116#: ../Doc/c-api/refcounting.rst:59
127- # ; Matt: Added translation
128117msgid "When done using the object, release is by calling :c:func:`Py_DECREF`."
129118msgstr "Cuando se termine de usar el objeto, se libera llamando a "
130119":c:func:`Py_DECREF`."
@@ -144,7 +133,6 @@ msgid ""
144133msgstr ""
145134
146135#: ../Doc/c-api/refcounting.rst:74
147- # ; Matt: Spellcheck and clarity
148136#, fuzzy
149137msgid ""
150138"Similar to :c:func:`Py_INCREF`, but the object *o* can be ``NULL``, in which "
@@ -158,7 +146,6 @@ msgid "See also :c:func:`Py_XNewRef`."
158146msgstr "Ver también :c:func:`Py_XNewRef`."
159147
160148#: ../Doc/c-api/refcounting.rst:82
161- # ; Matt: Spellcheck and clarity
162149#, fuzzy
163150msgid ""
164151"Create a new :term:`strong reference` to an object: call :c:func:`Py_INCREF` "
@@ -168,7 +155,6 @@ msgstr ""
168155":c:func:`Py_INCREF` sobre *o* y devuelve el objeto *o*."
169156
170157#: ../Doc/c-api/refcounting.rst:85
171- # ; Matt: Spellcheck and clarity
172158#, fuzzy
173159msgid ""
174160"When the :term:`strong reference` is no longer needed, :c:func:`Py_DECREF` "
@@ -216,7 +202,6 @@ msgid "If the object *o* is ``NULL``, the function just returns ``NULL``."
216202msgstr "Si el objeto *o* es ``NULL``, la función solo retorna ``NULL``."
217203
218204#: ../Doc/c-api/refcounting.rst:116
219- # ; Matt: Spellcheck and clarity
220205#, fuzzy
221206msgid ""
222207"Release a :term:`strong reference` to object *o*, indicating the reference "
@@ -226,7 +211,6 @@ msgstr ""
226211"referencia ya no se usa."
227212
228213#: ../Doc/c-api/refcounting.rst:121
229- # ; Matt: Spellcheck and clarity
230214#, fuzzy
231215msgid ""
232216"Once the last :term:`strong reference` is released (i.e. the object's "
@@ -261,7 +245,6 @@ msgid ""
261245msgstr ""
262246
263247#: ../Doc/c-api/refcounting.rst:138
264- # ; Matt Spellcheck and clarity
265248#, fuzzy
266249msgid ""
267250"The deallocation function can cause arbitrary Python code to be invoked (e."
@@ -286,7 +269,6 @@ msgstr ""
286269"llamar a :c:func:`Py_DECREF` para la variable temporal."
287270
288271#: ../Doc/c-api/refcounting.rst:153
289- # ; Matt: Added translation
290272msgid ""
291273"Similar to :c:func:`Py_DECREF`, but the object *o* can be ``NULL``, in which "
292274"case this has no effect. The same warning from :c:func:`Py_DECREF` applies "
@@ -325,7 +307,6 @@ msgstr ""
325307"basura."
326308
327309#: ../Doc/c-api/refcounting.rst:171
328- # ; Matt: Added translation
329310msgid ""
330311"The macro argument is now only evaluated once. If the argument has side "
331312"effects, these are no longer duplicated."
@@ -355,7 +336,6 @@ msgstr ""
355336"en tiempo de ejecución de Python."
356337
357338#: ../Doc/c-api/refcounting.rst:192
358- # ; Matt: Added translation
359339msgid ""
360340"Macro safely releasing a :term:`strong reference` to object *dst* and "
361341"setting *dst* to *src*."
@@ -364,7 +344,6 @@ msgstr ""
364344"*dist* y establece *dist* al valor *src*."
365345
366346#: ../Doc/c-api/refcounting.rst:195
367- # ; Matt: Added translation
368347msgid "As in case of :c:func:`Py_CLEAR`, \" the obvious\" code can be deadly::"
369348msgstr "Como en el caso de :c:func:`Py_CLEAR`, el codigo \" obvio\" puede ser "
370349"mortal::"
@@ -376,7 +355,6 @@ msgid ""
376355msgstr ""
377356
378357#: ../Doc/c-api/refcounting.rst:200
379- # ; Matt: added translation
380358msgid "The safe way is::"
381359msgstr "La forma segura es::"
382360
@@ -385,7 +363,6 @@ msgid "Py_SETREF(dst, src);"
385363msgstr ""
386364
387365#: ../Doc/c-api/refcounting.rst:204
388- # ; Matt: Added translation
389366msgid ""
390367"That arranges to set *dst* to *src* _before_ releasing the reference to the "
391368"old value of *dst*, so that any code triggered as a side-effect of *dst* "
@@ -397,7 +374,6 @@ msgstr ""
397374"objeto válido."
398375
399376#: ../Doc/c-api/refcounting.rst:211 ../Doc/c-api/refcounting.rst:223
400- # ; Matt: Added translation
401377msgid ""
402378"The macro arguments are now only evaluated once. If an argument has side "
403379"effects, these are no longer duplicated."
@@ -406,7 +382,6 @@ msgstr ""
406382"argumento tiene efectos secundarios, estos ya no se duplican."
407383
408384#: ../Doc/c-api/refcounting.rst:218
409- # ; Matt: Added Translation
410385msgid ""
411386"Variant of :c:macro:`Py_SETREF` macro that uses :c:func:`Py_XDECREF` instead "
412387"of :c:func:`Py_DECREF`."
0 commit comments