Skip to content

Commit 2fb1a5d

Browse files
committed
Traducción library/asyncio-future.po (100% - fuzzy)
1 parent 9d8b355 commit 2fb1a5d

File tree

1 file changed

+41
-7
lines changed

1 file changed

+41
-7
lines changed

library/asyncio-future.po

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2020-10-04 10:53+0200\n"
14+
"PO-Revision-Date: 2020-10-04 13:38+0200\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +23,6 @@ msgstr ""
2323
"X-Generator: Poedit 2.4.1\n"
2424

2525
#: ../Doc/library/asyncio-future.rst:8
26-
#, fuzzy
2726
msgid "Futures"
2827
msgstr "Futures"
2928

@@ -69,12 +68,11 @@ msgid "Return:"
6968
msgstr "Devuelve:"
7069

7170
#: ../Doc/library/asyncio-future.rst:38
72-
#, fuzzy
7371
msgid ""
7472
"*obj* argument as is, if *obj* is a :class:`Future`, a :class:`Task`, or a "
7573
"Future-like object (:func:`isfuture` is used for the test.)"
7674
msgstr ""
77-
"el argument *obj* inalterado, si *obj* es una :class:`Future`, :class:"
75+
"el argumento *obj* inalterado, si *obj* es una :class:`Future`, :class:"
7876
"`Task`, o un objeto tipo Future (:func:`isfuture` se utiliza para testear)"
7977

8078
#: ../Doc/library/asyncio-future.rst:42
@@ -297,90 +295,126 @@ msgstr ""
297295
"retrollamada (*callback*), por ejemplo::"
298296

299297
#: ../Doc/library/asyncio-future.rst:162
298+
#, fuzzy
300299
msgid ""
301300
"The *context* keyword-only parameter was added. See :pep:`567` for more "
302301
"details."
303302
msgstr ""
303+
"El parámetro de sólo clave-valor de contexto (*context*) fue añadido. Ver :"
304+
"pep:`567` para más detalles."
304305

305306
#: ../Doc/library/asyncio-future.rst:168
306307
msgid "Remove *callback* from the callbacks list."
307-
msgstr ""
308+
msgstr "Elimina la retrollamada (*callback*) de la lista de retrollamadas."
308309

309310
#: ../Doc/library/asyncio-future.rst:170
310311
msgid ""
311312
"Returns the number of callbacks removed, which is typically 1, unless a "
312313
"callback was added more than once."
313314
msgstr ""
315+
"Devuelve el número de retrollamadas eliminadas, que normalmente es 1, "
316+
"excepto si una retrollamada fue añadida más de una vez."
314317

315318
#: ../Doc/library/asyncio-future.rst:175
316319
msgid "Cancel the Future and schedule callbacks."
317-
msgstr ""
320+
msgstr "Cancela el Future y programa retrollamadas."
318321

319322
#: ../Doc/library/asyncio-future.rst:177
323+
#, fuzzy
320324
msgid ""
321325
"If the Future is already *done* or *cancelled*, return ``False``. Otherwise, "
322326
"change the Future's state to *cancelled*, schedule the callbacks, and return "
323327
"``True``."
324328
msgstr ""
329+
"Si el Future ya está *done* o *cancelled*, devuelve ``False``. De lo "
330+
"contrario, cambia el estado del Future a *cancelled*, programa las "
331+
"retrollamadas, y devuelve ``True``."
325332

326333
#: ../Doc/library/asyncio-future.rst:183
327334
msgid "Return the exception that was set on this Future."
328-
msgstr ""
335+
msgstr "Devuelve la excepción definida en este Future."
329336

330337
#: ../Doc/library/asyncio-future.rst:185
338+
#, fuzzy
331339
msgid ""
332340
"The exception (or ``None`` if no exception was set) is returned only if the "
333341
"Future is *done*."
334342
msgstr ""
343+
"La excepción (o ``None`` si no se había establecido ninguna excepción) es "
344+
"devuelta sólo si Future es *done*."
335345

336346
#: ../Doc/library/asyncio-future.rst:191
347+
#, fuzzy
337348
msgid ""
338349
"If the Future isn't *done* yet, this method raises an :exc:"
339350
"`InvalidStateError` exception."
340351
msgstr ""
352+
"Si el Future todavía no es *done*, este método lanza una excepción :exc:"
353+
"`InvalidStateError`."
341354

342355
#: ../Doc/library/asyncio-future.rst:196
356+
#, fuzzy
343357
msgid "Return the event loop the Future object is bound to."
344358
msgstr ""
359+
"Devuelve el bucle de eventos (*event loop*) al cual el objeto Future está "
360+
"asociado."
345361

346362
#: ../Doc/library/asyncio-future.rst:203
347363
msgid ""
348364
"This example creates a Future object, creates and schedules an asynchronous "
349365
"Task to set result for the Future, and waits until the Future has a result::"
350366
msgstr ""
367+
"Este ejemplo crea un objeto Future, crea y programa una Task asíncrona para "
368+
"establecer el resultado para el Future, y espera hasta que el Future tenga "
369+
"un resultado::"
351370

352371
#: ../Doc/library/asyncio-future.rst:238
353372
msgid ""
354373
"The Future object was designed to mimic :class:`concurrent.futures.Future`. "
355374
"Key differences include:"
356375
msgstr ""
376+
"El objeto Future fue diseñado para imitar a :class:`concurrent.futures."
377+
"Future`. Entre las principales diferencias están:"
357378

358379
#: ../Doc/library/asyncio-future.rst:241
380+
#, fuzzy
359381
msgid ""
360382
"unlike asyncio Futures, :class:`concurrent.futures.Future` instances cannot "
361383
"be awaited."
362384
msgstr ""
385+
"al contrario que Futures de *asyncio*, las instancias de :class:`concurrent."
386+
"futures.Future` no son esperables (*await*)."
363387

364388
#: ../Doc/library/asyncio-future.rst:244
365389
msgid ""
366390
":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` do not "
367391
"accept the *timeout* argument."
368392
msgstr ""
393+
":meth:`asyncio.Future.result` y :meth:`asyncio.Future.exception` no aceptan "
394+
"el argumento *timeout*."
369395

370396
#: ../Doc/library/asyncio-future.rst:247
397+
#, fuzzy
371398
msgid ""
372399
":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` raise an :"
373400
"exc:`InvalidStateError` exception when the Future is not *done*."
374401
msgstr ""
402+
":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` lanzan "
403+
"una excepción :exc:`InvalidStateError` cuando el Future no es *done*."
375404

376405
#: ../Doc/library/asyncio-future.rst:251
377406
msgid ""
378407
"Callbacks registered with :meth:`asyncio.Future.add_done_callback` are not "
379408
"called immediately. They are scheduled with :meth:`loop.call_soon` instead."
380409
msgstr ""
410+
"Las retrollamadas (*callbacks*) registradas con :meth:`asyncio.Future."
411+
"add_done_callback` no son llamadas inmediatamente, sino que son programadas "
412+
"con :meth:`loop.call_soon`."
381413

382414
#: ../Doc/library/asyncio-future.rst:255
383415
msgid ""
384416
"asyncio Future is not compatible with the :func:`concurrent.futures.wait` "
385417
"and :func:`concurrent.futures.as_completed` functions."
386418
msgstr ""
419+
"*asyncio* Future no es compatible con las funciones :func:`concurrent."
420+
"futures.wait` ni :func:`concurrent.futures.as_completed`."

0 commit comments

Comments
 (0)