Skip to content

Commit dba20a2

Browse files
committed
Traducción library/gc
1 parent af7fdf4 commit dba20a2

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

library/gc.po

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
14-
"PO-Revision-Date: 2021-08-07 21:59+0200\n"
14+
"PO-Revision-Date: 2023-11-08 11:30-0400\n"
1515
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
16-
"Language: es\n"
1716
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
17+
"Language: es\n"
1918
"MIME-Version: 1.0\n"
2019
"Content-Type: text/plain; charset=utf-8\n"
2120
"Content-Transfer-Encoding: 8bit\n"
21+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2222
"Generated-By: Babel 2.13.0\n"
23+
"X-Generator: Poedit 3.2.2\n"
2324

2425
#: ../Doc/library/gc.rst:2
2526
msgid ":mod:`gc` --- Garbage Collector interface"
@@ -99,6 +100,8 @@ msgid ""
99100
"The effect of calling ``gc.collect()`` while the interpreter is already "
100101
"performing a collection is undefined."
101102
msgstr ""
103+
"El efecto de llamar a ``gc.collect()`` mientras el intérprete ya está "
104+
"realizando una recolección es indefinido."
102105

103106
#: ../Doc/library/gc.rst:59
104107
msgid ""
@@ -337,6 +340,8 @@ msgid ""
337340
"Freeze all the objects tracked by the garbage collector; move them to a "
338341
"permanent generation and ignore them in all the future collections."
339342
msgstr ""
343+
"Congela todos los objetos rastreados por el recolector de basura; los mueve "
344+
"a una generación permanente y los ignora en todas las recolecciones futuras."
340345

341346
#: ../Doc/library/gc.rst:215
342347
msgid ""
@@ -349,6 +354,16 @@ msgid ""
349354
"early in the parent process, ``gc.freeze()`` right before ``fork()``, and "
350355
"``gc.enable()`` early in child processes."
351356
msgstr ""
357+
"Si un proceso ``fork()`` sin ``exec()``, evitar la copia en escritura "
358+
"innecesaria en procesos secundarios maximizará el intercambio de memoria y "
359+
"reducirá el uso general de la memoria. Esto requiere tanto evitar la "
360+
"creación de \"agujeros\" liberados en las páginas de memoria del proceso "
361+
"principal y garantizar que las colecciones de GC en los procesos secundarios "
362+
"no tocarán el contador ``gc_refs`` de objetos de larga duración que se "
363+
"originan en el proceso principal. Para lograr ambas cosas, llame a ``gc."
364+
"disable()`` al principio del proceso principal, a ``gc.freeze()`` justo "
365+
"antes de ``fork()`` y a ``gc.enable()`` al principio. en procesos "
366+
"secundarios."
352367

353368
#: ../Doc/library/gc.rst:229
354369
msgid ""
@@ -404,13 +419,12 @@ msgstr ""
404419
"objetos no recolectables."
405420

406421
#: ../Doc/library/gc.rst:261
407-
#, fuzzy
408422
msgid ""
409423
"Following :pep:`442`, objects with a :meth:`~object.__del__` method don't "
410424
"end up in :data:`gc.garbage` anymore."
411425
msgstr ""
412-
"Cumpliendo con :pep:`442`, los objetos con un método :meth:`__del__` ya no "
413-
"terminan en :attr:`gc.garbage`."
426+
"Siguiendo con :pep:`442`, los objetos con un método :meth:`~object.__del__` "
427+
"ya no terminan en :data:`gc.garbage`."
414428

415429
#: ../Doc/library/gc.rst:267
416430
msgid ""

0 commit comments

Comments
 (0)