@@ -11,15 +11,16 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2021-10-16 21:42+0200\n "
14
- "PO-Revision-Date : 2021-08-02 01:45 +0200\n "
14
+ "PO-Revision-Date : 2021-10-26 08:09 +0200\n "
15
15
"Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1)\n "
18
+ "Plural-Forms : nplurals=2; plural=(n != 1); \n "
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=utf-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
22
"Generated-By : Babel 2.9.1\n "
23
+ "X-Generator : Poedit 3.0\n "
23
24
24
25
#: ../Doc/c-api/gcsupport.rst:6
25
26
msgid "Supporting Cyclic Garbage Collection"
@@ -92,6 +93,9 @@ msgid ""
92
93
"c:member:`~PyTypeObject.tp_traverse` handler or explicitly use one from its "
93
94
"subclass or subclasses."
94
95
msgstr ""
96
+ "Si un tipo añade el Py_TPFLAGS_HAVE_GC, entonces *must* implementar al menos "
97
+ "un manejado :c:member:`~PyTypeObject.tp_traverse` o usar explícitamente uno "
98
+ "de su subclase o subclases."
95
99
96
100
#: ../Doc/c-api/gcsupport.rst:41
97
101
msgid ""
@@ -103,6 +107,13 @@ msgid ""
103
107
"implements the garbage collector protocol and the child class does *not* "
104
108
"include the :const:`Py_TPFLAGS_HAVE_GC` flag."
105
109
msgstr ""
110
+ "Al llamar a :c:func:`PyType_Ready` o alguna de las APIs que indirectamente "
111
+ "lo llaman como :c:func:`PyType_FromSpecWithBases` o :c:func:"
112
+ "`PyType_FromSpec` el intérprete automáticamente llenara los campos :c:member:"
113
+ "`~PyTypeObject.tp_flags`, :c:member:`~PyTypeObject.tp_traverse` y :c:member:"
114
+ "`~PyTypeObject.tp_clear` si el tipo si el tipo hereda de una clase que "
115
+ "implementa el protocolo del recolector de basura y la clase secundaria *no* "
116
+ "incluye el *flag* :const:`Py_TPFLAGS_HAVE_GC`."
106
117
107
118
#: ../Doc/c-api/gcsupport.rst:51
108
119
msgid ""
@@ -338,19 +349,24 @@ msgstr ""
338
349
339
350
#: ../Doc/c-api/gcsupport.rst:191
340
351
msgid "Controlling the Garbage Collector State"
341
- msgstr ""
352
+ msgstr "Controlar el estado del recolector de basura "
342
353
343
354
#: ../Doc/c-api/gcsupport.rst:193
344
355
msgid ""
345
356
"The C-API provides the following functions for controlling garbage "
346
357
"collection runs."
347
358
msgstr ""
359
+ "La C-API proporciona las siguientes funciones para controlar las ejecuciones "
360
+ "de recolección de basura."
348
361
349
362
#: ../Doc/c-api/gcsupport.rst:198
350
363
msgid ""
351
364
"Perform a full garbage collection, if the garbage collector is enabled. "
352
365
"(Note that :func:`gc.collect` runs it unconditionally.)"
353
366
msgstr ""
367
+ "Realiza una recolección de basura completa, si el recolector de basura está "
368
+ "habilitado. (Tenga en cuenta que :func:`gc.collect` lo ejecuta "
369
+ "incondicionalmente)."
354
370
355
371
#: ../Doc/c-api/gcsupport.rst:201
356
372
msgid ""
@@ -359,21 +375,32 @@ msgid ""
359
375
"returns ``0`` immediately. Errors during garbage collection are passed to :"
360
376
"data:`sys.unraisablehook`. This function does not raise exceptions."
361
377
msgstr ""
378
+ "Retorna el número de objetos recolectados e inalcanzables que no se pueden "
379
+ "recolectar. Si el recolector de basura está deshabilitado o ya está "
380
+ "recolectando, retorna ``0`` inmediatamente. Los errores durante la "
381
+ "recolección de basura se pasan a :data:`sys.unraisablehook`. Esta función no "
382
+ "genera excepciones."
362
383
363
384
#: ../Doc/c-api/gcsupport.rst:211
364
385
msgid ""
365
386
"Enable the garbage collector: similar to :func:`gc.enable`. Returns the "
366
387
"previous state, 0 for disabled and 1 for enabled."
367
388
msgstr ""
389
+ "Habilita el recolector de basura: similar a :func:`gc.enable`. Retorna el "
390
+ "estado anterior, 0 para deshabilitado y 1 para habilitado."
368
391
369
392
#: ../Doc/c-api/gcsupport.rst:219
370
393
msgid ""
371
394
"Disable the garbage collector: similar to :func:`gc.disable`. Returns the "
372
395
"previous state, 0 for disabled and 1 for enabled."
373
396
msgstr ""
397
+ "Deshabilita el recolector de basura: similar a :func:`gc.disable`. Retorna "
398
+ "el estado anterior, 0 para deshabilitado y 1 para habilitado."
374
399
375
400
#: ../Doc/c-api/gcsupport.rst:227
376
401
msgid ""
377
402
"Query the state of the garbage collector: similar to :func:`gc.isenabled`. "
378
403
"Returns the current state, 0 for disabled and 1 for enabled."
379
404
msgstr ""
405
+ "Consulta el estado del recolector de basura: similar a :func:`gc.isenabled`. "
406
+ "Retorna el estado actual, 0 para deshabilitado y 1 para habilitado."
0 commit comments