@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version :Python 3.8\n "
12
12
"Report-Msgid-Bugs-To :\n "
13
13
"POT-Creation-Date :2023-10-12 19:43+0200\n "
14
- "PO-Revision-Date :2024-02-05 12:18 -0300\n "
14
+ "PO-Revision-Date :2024-02-06 18:51 -0300\n "
15
15
"Last-Translator :Zodac <zodac@duck.com>\n "
16
16
"Language-Team :python-doc-es\n "
17
17
"Language :es\n "
@@ -20,7 +20,7 @@ msgstr ""
20
20
"Content-Transfer-Encoding :8bit\n "
21
21
"Plural-Forms :nplurals=2; plural=(n != 1);\n "
22
22
"Generated-By :Babel 2.13.0\n "
23
- "X-Generator :Poedit 3.4 .2\n "
23
+ "X-Generator :Poedit 3.2 .2\n "
24
24
25
25
#: ../Doc/library/threading.rst:2
26
26
msgid ":mod:`threading` --- Thread-based parallelism"
@@ -31,13 +31,12 @@ msgid "**Source code:** :source:`Lib/threading.py`"
31
31
msgstr "**Código fuente:** :source:`Lib/threading.py`"
32
32
33
33
#: ../Doc/library/threading.rst:11
34
- #, fuzzy
35
34
msgid ""
36
35
"This module constructs higher-level threading interfaces on top of the lower "
37
36
"level :mod:`_thread` module."
38
37
msgstr ""
39
38
"Este módulo construye interfaces de hilado de alto nivel sobre el módulo de "
40
- "más bajo nivel :mod:`_thread`. Ver también el módulo :mod:`queue`. "
39
+ "más bajo nivel :mod:`_thread`."
41
40
42
41
#: ../Doc/library/threading.rst:14
43
42
msgid "This module used to be optional, it is now always available."
@@ -103,10 +102,8 @@ msgstr ""
103
102
"varias tareas vinculadas a E/S simultáneamente."
104
103
105
104
#: ../Doc/includes/wasm-notavail.rst:3
106
- #, fuzzy
107
105
msgid ":ref:`Availability <availability>`: not Emscripten, not WASI."
108
- msgstr ""
109
- ":ref:`Disponibilidad <availability>`: Windows, sistemas con hilos POSIX."
106
+ msgstr ":ref:`Disponibilidad <availability>`: not Emscripten, not WASI."
110
107
111
108
#: ../Doc/includes/wasm-notavail.rst:5
112
109
msgid ""
@@ -261,7 +258,6 @@ msgstr ""
261
258
"valor puede ser reciclado por el SO)."
262
259
263
260
#: ../Doc/library/threading.rst:130 ../Doc/library/threading.rst:465
264
- #, fuzzy
265
261
msgid ""
266
262
":ref:`Availability <availability>`: Windows, FreeBSD, Linux, macOS, OpenBSD, "
267
263
"NetBSD, AIX, DragonFlyBSD."
@@ -303,7 +299,6 @@ msgstr ""
303
299
"cada hilo, antes de que su método :meth:`~Thread.run` sea llamado."
304
300
305
301
#: ../Doc/library/threading.rst:163
306
- #, fuzzy
307
302
msgid ""
308
303
"Set a trace function for all threads started from the :mod:`threading` "
309
304
"module and all Python threads that are currently executing."
@@ -313,7 +308,6 @@ msgstr ""
313
308
"cada hilo, antes de que su método :meth:`~Thread.run` sea llamado."
314
309
315
310
#: ../Doc/library/threading.rst:166
316
- #, fuzzy
317
311
msgid ""
318
312
"The *func* will be passed to :func:`sys.settrace` for each thread, before "
319
313
"its :meth:`~Thread.run` method is called."
@@ -338,7 +332,6 @@ msgstr ""
338
332
"cada hilo, antes de que se llame a su método :meth:`~Thread.run`."
339
333
340
334
#: ../Doc/library/threading.rst:192
341
- #, fuzzy
342
335
msgid ""
343
336
"Set a profile function for all threads started from the :mod:`threading` "
344
337
"module and all Python threads that are currently executing."
@@ -348,7 +341,6 @@ msgstr ""
348
341
"cada hilo, antes de que se llame a su método :meth:`~Thread.run`."
349
342
350
343
#: ../Doc/library/threading.rst:195
351
- #, fuzzy
352
344
msgid ""
353
345
"The *func* will be passed to :func:`sys.setprofile` for each thread, before "
354
346
"its :meth:`~Thread.run` method is called."
@@ -399,10 +391,8 @@ msgstr ""
399
391
"específica)"
400
392
401
393
#: ../Doc/library/threading.rst:226
402
- #, fuzzy
403
394
msgid ":ref:`Availability <availability>`: Windows, pthreads."
404
- msgstr ""
405
- ":ref:`Disponibilidad <availability>`: Windows, sistemas con hilos POSIX."
395
+ msgstr ":ref:`Disponibilidad <availability>`: Windows, pthreads."
406
396
407
397
#: ../Doc/library/threading.rst:228
408
398
msgid "Unix platforms with POSIX threads support."
@@ -480,20 +470,18 @@ msgid "A class that represents thread-local data."
480
470
msgstr "Una clase que representa datos locales de hilo."
481
471
482
472
#: ../Doc/library/threading.rst:274
483
- #, fuzzy
484
473
msgid ""
485
474
"For more details and extensive examples, see the documentation string of "
486
475
"the :mod:`!_threading_local` module: :source:`Lib/_threading_local.py`."
487
476
msgstr ""
488
477
"Para más detalles y ejemplos extensivos, véase la documentación del módulo :"
489
- "mod:`_threading_local`."
478
+ "mod:`! _threading_local` module: :source:`Lib/_threading_local.py `."
490
479
491
480
#: ../Doc/library/threading.rst:281
492
481
msgid "Thread Objects"
493
482
msgstr "Objetos tipo hilo"
494
483
495
484
#: ../Doc/library/threading.rst:283
496
- #, fuzzy
497
485
msgid ""
498
486
"The :class:`Thread` class represents an activity that is run in a separate "
499
487
"thread of control. There are two ways to specify the activity: by passing a "
@@ -596,7 +584,6 @@ msgstr ""
596
584
"inicial del programa de Python. No es un hilo demonio."
597
585
598
586
#: ../Doc/library/threading.rst:325
599
- #, fuzzy
600
587
msgid ""
601
588
"There is the possibility that\" dummy thread objects\" are created. These "
602
589
"are thread objects corresponding to\" alien threads\" , which are threads of "
@@ -611,8 +598,8 @@ msgstr ""
611
598
"control iniciados afuera del modulo *threading*, por ejemplo directamente de "
612
599
"código en C. Los objetos de hilos *dummy* tienen funcionalidad limitada; "
613
600
"siempre se consideran vivos y demoníacos, y no pueden se les puede aplicar "
614
- "el método :meth:`~Thread. join`. Nunca son eliminados, ya que es imposible "
615
- "detectar la terminación de hilos extranjeros."
601
+ "el método :ref:`joined <meth-thread- join> `. Nunca son eliminados, ya que es "
602
+ "imposible detectar la terminación de hilos extranjeros."
616
603
617
604
#: ../Doc/library/threading.rst:336
618
605
msgid ""
@@ -623,13 +610,12 @@ msgstr ""
623
610
"Los argumentos son:"
624
611
625
612
#: ../Doc/library/threading.rst:339
626
- #, fuzzy
627
613
msgid ""
628
614
"*group* should be ``None``; reserved for future extension when a :class:`!"
629
615
"ThreadGroup` class is implemented."
630
616
msgstr ""
631
617
"*group* debe ser `None`; reservado para una futura extensión cuando se "
632
- "implemente una clase :class:`ThreadGroup`."
618
+ "implemente una clase :class:`! ThreadGroup`."
633
619
634
620
#: ../Doc/library/threading.rst:342
635
621
msgid ""
@@ -652,13 +638,12 @@ msgstr ""
652
638
"se especifica el argumento *target*."
653
639
654
640
#: ../Doc/library/threading.rst:350
655
- #, fuzzy
656
641
msgid ""
657
642
"*args* is a list or tuple of arguments for the target invocation. Defaults "
658
643
"to ``()``."
659
644
msgstr ""
660
- "*args* esla tupla deargumento para la invocaciónobjetivo . Por defecto es "
661
- "``()``."
645
+ "*args* esuna lista o tupla deargumentos para la invocaciónde destino . Por "
646
+ "defecto es ``()``."
662
647
663
648
#: ../Doc/library/threading.rst:352
664
649
msgid ""
@@ -743,9 +728,8 @@ msgstr ""
743
728
"`Thread` podría lograr el mismo efecto."
744
729
745
730
#: ../Doc/library/threading.rst:392
746
- #, fuzzy
747
731
msgid "Example::"
748
- msgstr "Por ejemplo :"
732
+ msgstr "Ejemplo: :"
749
733
750
734
#: ../Doc/library/threading.rst:406
751
735
msgid ""
@@ -784,9 +768,8 @@ msgstr ""
784
768
"bloqueará hasta que el hilo termine."
785
769
786
770
#: ../Doc/library/threading.rst:421
787
- #, fuzzy
788
771
msgid "A thread can be joined many times."
789
- msgstr "A un hilose le puedeaplicar :meth:`~Thread.join` muchas veces."
772
+ msgstr "Un hilo puedeunirse varias veces."
790
773
791
774
#: ../Doc/library/threading.rst:423
792
775
msgid ""
@@ -873,7 +856,6 @@ msgstr ""
873
856
"los hilos vivos."
874
857
875
858
#: ../Doc/library/threading.rst:479
876
- #, fuzzy
877
859
msgid ""
878
860
"A boolean value indicating whether this thread is a daemon thread (``True``) "
879
861
"or not (``False``). This must be set before :meth:`~Thread.start` is "
@@ -1011,7 +993,6 @@ msgstr ""
1011
993
"``Falso`` inmediatamente; de otro modo, cierra el *lock* y retorna ``True``."
1012
994
1013
995
#: ../Doc/library/threading.rst:550
1014
- #, fuzzy
1015
996
msgid ""
1016
997
"When invoked with the floating-point *timeout* argument set to a positive "
1017
998
"value, block for at most the number of seconds specified by *timeout* and as "
@@ -1023,7 +1004,7 @@ msgstr ""
1023
1004
"valor positivo, bloquea por a lo más el número de segundos especificado en "
1024
1005
"*timeout* y mientras el *lock* no pueda ser adquirido. Un argumento "
1025
1006
"*timeout* de\" -1\" especifica una espera ilimitada. No está admitido "
1026
- "especificar un *timeout* cuando *blocking* esfalso ."
1007
+ "especificar un *timeout* cuando *blocking* es``False`` ."
1027
1008
1028
1009
#: ../Doc/library/threading.rst:556
1029
1010
msgid ""
@@ -1074,9 +1055,8 @@ msgid "There is no return value."
1074
1055
msgstr "No hay valor de retorno."
1075
1056
1076
1057
#: ../Doc/library/threading.rst:582
1077
- #, fuzzy
1078
1058
msgid "Return ``True`` if the lock is acquired."
1079
- msgstr "Retorna*true* siel *lock* ha sido adquirido ."
1059
+ msgstr "Retorna``True`` sise adquiere el bloqueo ."
1080
1060
1081
1061
#: ../Doc/library/threading.rst:589
1082
1062
msgid "RLock Objects"
@@ -1164,7 +1144,6 @@ msgstr ""
1164
1144
"apoderarse del *lock*. No hay valor de retorno en este caso."
1165
1145
1166
1146
#: ../Doc/library/threading.rst:631
1167
- #, fuzzy
1168
1147
msgid ""
1169
1148
"When invoked with the *blocking* argument set to ``True``, do the same thing "
1170
1149
"as when called without arguments, and return ``True``."
@@ -1173,7 +1152,6 @@ msgstr ""
1173
1152
"que cuando se llama sin argumentos y retorna ``True``."
1174
1153
1175
1154
#: ../Doc/library/threading.rst:634
1176
- #, fuzzy
1177
1155
msgid ""
1178
1156
"When invoked with the *blocking* argument set to ``False``, do not block. "
1179
1157
"If a call without an argument would block, return ``False`` immediately; "
@@ -1185,7 +1163,6 @@ msgstr ""
1185
1163
"otro modo, hace lo mismo que al llamarse sin argumentos, y retorna ``True``."
1186
1164
1187
1165
#: ../Doc/library/threading.rst:638
1188
- #, fuzzy
1189
1166
msgid ""
1190
1167
"When invoked with the floating-point *timeout* argument set to a positive "
1191
1168
"value, block for at most the number of seconds specified by *timeout* and as "