@@ -26,7 +26,6 @@ msgid "Reference Counting"
26
26
msgstr "Conteo de referencias"
27
27
28
28
#: ../Doc/c-api/refcounting.rst:10
29
- # ; Matt: Spellcheck and clarity
30
29
#, fuzzy
31
30
msgid ""
32
31
"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*."
41
40
msgstr "Incrementar el recuento de referencia para el objeto *o*."
42
41
43
42
#: ../Doc/c-api/refcounting.rst:18
44
- # ; Matt: Added translation
45
43
msgid ""
46
44
"Note that the returned value may not actually reflect how many references to "
47
45
"the object are actually held. For example, some objects are :term:"
@@ -57,33 +55,28 @@ msgstr ""
57
55
58
56
59
57
#: ../Doc/c-api/refcounting.rst:24
60
- # ; Matt: Added translation
61
58
msgid ""
62
59
"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count."
63
60
msgstr ""
64
61
"Usa la función :c:func:`Py_SET_REFCNT()` para establecer la cuenta de "
65
62
"referencias de un objeto."
66
63
67
64
#: ../Doc/c-api/refcounting.rst:26
68
- # ; Matt: Added translation
69
65
msgid ":c:func:`Py_REFCNT()` is changed to the inline static function."
70
66
msgstr ":c:func:`Py_REFCNT()` se convierte en una función estática en línea."
71
67
72
68
73
69
74
70
#: ../Doc/c-api/refcounting.rst:29
75
- # ; Matt: Added translation
76
71
msgid "The parameter type is no longer :c:expr:`const PyObject*`."
77
72
msgstr "El tipo de parámetro ya no es :c:expr:`const PyObject*`."
78
73
79
74
#: ../Doc/c-api/refcounting.rst:35
80
- # ; Matt: Spellcheck and clarity
81
75
#, fuzzy
82
76
msgid "Set the object *o* reference counter to *refcnt*."
83
77
msgstr "Establece la cuenta de referencias del objeto *o* al valor *refcnt*."
84
78
85
79
#: ../Doc/c-api/refcounting.rst:37
86
- # ; Matt: Added translation
87
80
msgid ""
88
81
"On :ref:`Python build with Free Threading <free-threading-build>`, if "
89
82
"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`."
@@ -94,18 +87,15 @@ msgstr ""
94
87
95
88
#: ../Doc/c-api/refcounting.rst:40 ../Doc/c-api/refcounting.rst:53
96
89
#: ../Doc/c-api/refcounting.rst:119
97
- # ; Matt: Added translation
98
90
msgid "This function has no effect on :term:`immortal` objects."
99
91
msgstr "Esta función no afecta a los objetos :term:`inmortales`."
100
92
101
93
#: ../Doc/c-api/refcounting.rst:44 ../Doc/c-api/refcounting.rst:68
102
94
#: ../Doc/c-api/refcounting.rst:147
103
- # ; Matt: Added translation
104
95
msgid "Immortal objects are not modified."
105
96
msgstr "Los objetos inmortales no se modifican."
106
97
107
98
#: ../Doc/c-api/refcounting.rst:50
108
- # ; Matt: Added translation
109
99
msgid ""
110
100
"Indicate taking a new :term:`strong reference` to object *o*, indicating it "
111
101
"is in use and should not be destroyed."
@@ -124,7 +114,6 @@ msgstr ""
124
114
"`Py_NewRef` se puede utilizar para crear un nuevo :term:`strong reference`."
125
115
126
116
#: ../Doc/c-api/refcounting.rst:59
127
- # ; Matt: Added translation
128
117
msgid "When done using the object, release is by calling :c:func:`Py_DECREF`."
129
118
msgstr "Cuando se termine de usar el objeto, se libera llamando a "
130
119
":c:func:`Py_DECREF`."
@@ -144,7 +133,6 @@ msgid ""
144
133
msgstr ""
145
134
146
135
#: ../Doc/c-api/refcounting.rst:74
147
- # ; Matt: Spellcheck and clarity
148
136
#, fuzzy
149
137
msgid ""
150
138
"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`."
158
146
msgstr "Ver también :c:func:`Py_XNewRef`."
159
147
160
148
#: ../Doc/c-api/refcounting.rst:82
161
- # ; Matt: Spellcheck and clarity
162
149
#, fuzzy
163
150
msgid ""
164
151
"Create a new :term:`strong reference` to an object: call :c:func:`Py_INCREF` "
@@ -168,7 +155,6 @@ msgstr ""
168
155
":c:func:`Py_INCREF` sobre *o* y devuelve el objeto *o*."
169
156
170
157
#: ../Doc/c-api/refcounting.rst:85
171
- # ; Matt: Spellcheck and clarity
172
158
#, fuzzy
173
159
msgid ""
174
160
"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``."
216
202
msgstr "Si el objeto *o* es ``NULL``, la función solo retorna ``NULL``."
217
203
218
204
#: ../Doc/c-api/refcounting.rst:116
219
- # ; Matt: Spellcheck and clarity
220
205
#, fuzzy
221
206
msgid ""
222
207
"Release a :term:`strong reference` to object *o*, indicating the reference "
@@ -226,7 +211,6 @@ msgstr ""
226
211
"referencia ya no se usa."
227
212
228
213
#: ../Doc/c-api/refcounting.rst:121
229
- # ; Matt: Spellcheck and clarity
230
214
#, fuzzy
231
215
msgid ""
232
216
"Once the last :term:`strong reference` is released (i.e. the object's "
@@ -261,7 +245,6 @@ msgid ""
261
245
msgstr ""
262
246
263
247
#: ../Doc/c-api/refcounting.rst:138
264
- # ; Matt Spellcheck and clarity
265
248
#, fuzzy
266
249
msgid ""
267
250
"The deallocation function can cause arbitrary Python code to be invoked (e."
@@ -286,7 +269,6 @@ msgstr ""
286
269
"llamar a :c:func:`Py_DECREF` para la variable temporal."
287
270
288
271
#: ../Doc/c-api/refcounting.rst:153
289
- # ; Matt: Added translation
290
272
msgid ""
291
273
"Similar to :c:func:`Py_DECREF`, but the object *o* can be ``NULL``, in which "
292
274
"case this has no effect. The same warning from :c:func:`Py_DECREF` applies "
@@ -325,7 +307,6 @@ msgstr ""
325
307
"basura."
326
308
327
309
#: ../Doc/c-api/refcounting.rst:171
328
- # ; Matt: Added translation
329
310
msgid ""
330
311
"The macro argument is now only evaluated once. If the argument has side "
331
312
"effects, these are no longer duplicated."
@@ -355,7 +336,6 @@ msgstr ""
355
336
"en tiempo de ejecución de Python."
356
337
357
338
#: ../Doc/c-api/refcounting.rst:192
358
- # ; Matt: Added translation
359
339
msgid ""
360
340
"Macro safely releasing a :term:`strong reference` to object *dst* and "
361
341
"setting *dst* to *src*."
@@ -364,7 +344,6 @@ msgstr ""
364
344
"*dist* y establece *dist* al valor *src*."
365
345
366
346
#: ../Doc/c-api/refcounting.rst:195
367
- # ; Matt: Added translation
368
347
msgid "As in case of :c:func:`Py_CLEAR`, \" the obvious\" code can be deadly::"
369
348
msgstr "Como en el caso de :c:func:`Py_CLEAR`, el codigo \" obvio\" puede ser "
370
349
"mortal::"
@@ -376,7 +355,6 @@ msgid ""
376
355
msgstr ""
377
356
378
357
#: ../Doc/c-api/refcounting.rst:200
379
- # ; Matt: added translation
380
358
msgid "The safe way is::"
381
359
msgstr "La forma segura es::"
382
360
@@ -385,7 +363,6 @@ msgid "Py_SETREF(dst, src);"
385
363
msgstr ""
386
364
387
365
#: ../Doc/c-api/refcounting.rst:204
388
- # ; Matt: Added translation
389
366
msgid ""
390
367
"That arranges to set *dst* to *src* _before_ releasing the reference to the "
391
368
"old value of *dst*, so that any code triggered as a side-effect of *dst* "
@@ -397,7 +374,6 @@ msgstr ""
397
374
"objeto válido."
398
375
399
376
#: ../Doc/c-api/refcounting.rst:211 ../Doc/c-api/refcounting.rst:223
400
- # ; Matt: Added translation
401
377
msgid ""
402
378
"The macro arguments are now only evaluated once. If an argument has side "
403
379
"effects, these are no longer duplicated."
@@ -406,7 +382,6 @@ msgstr ""
406
382
"argumento tiene efectos secundarios, estos ya no se duplican."
407
383
408
384
#: ../Doc/c-api/refcounting.rst:218
409
- # ; Matt: Added Translation
410
385
msgid ""
411
386
"Variant of :c:macro:`Py_SETREF` macro that uses :c:func:`Py_XDECREF` instead "
412
387
"of :c:func:`Py_DECREF`."
0 commit comments