@@ -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 : 2020-05-05 12:54+0200\n "
14
- "PO-Revision-Date : 2020-10-03 17:44 +0200\n "
14
+ "PO-Revision-Date : 2020-10-04 10:53 +0200\n "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
@@ -40,9 +40,9 @@ msgid ""
40
40
"*Future* objects are used to bridge **low-level callback-based code** with "
41
41
"high-level async/await code."
42
42
msgstr ""
43
- "Los objetos *Future* se utilizan para conectar **código basado en callbacks "
44
- "de bajo nivel** (*low-level callback-based code*) con código *async/await* "
45
- "de alto nivel."
43
+ "Los objetos *Future* se utilizan para conectar **código basado en "
44
+ "retrollamadas de bajo nivel** (*low-level callback-based code*) con código "
45
+ "*async/await* de alto nivel."
46
46
47
47
#: ../Doc/library/asyncio-future.rst:20
48
48
msgid "Future Functions"
@@ -151,8 +151,8 @@ msgid ""
151
151
"protocols>`) to interoperate with high-level async/await code."
152
152
msgstr ""
153
153
"Normalmente, los *Futures* se utilizan para permitir que código basado en "
154
- "callbacks de bajo nivel (*low-level callback-based code*) (por ejemplo, en "
155
- "protocolos implementados utilizando *asyncio* :ref:`transports <asyncio-"
154
+ "retrollamadas de bajo nivel (*low-level callback-based code*) (por ejemplo, "
155
+ "en protocolos implementados utilizando *asyncio* :ref:`transports <asyncio-"
156
156
"transports-protocols>`) interactúe con código *async/await* de alto nivel."
157
157
158
158
#: ../Doc/library/asyncio-future.rst:84
@@ -258,41 +258,43 @@ msgstr ""
258
258
"antes de establecer un resultado o excepción al mismo::"
259
259
260
260
#: ../Doc/library/asyncio-future.rst:143
261
- #, fuzzy
262
261
msgid "Add a callback to be run when the Future is *done*."
263
- msgstr "Añade un *callback* a ser ejecutado cuando el Future es *done*."
262
+ msgstr ""
263
+ "Añade una retrollamada (*callback*) a ser ejecutada cuando el Future es "
264
+ "*done*."
264
265
265
266
#: ../Doc/library/asyncio-future.rst:145
266
267
msgid "The *callback* is called with the Future object as its only argument."
267
- msgstr "El *callback* es llamado con el objeto Future como su único argumento."
268
+ msgstr ""
269
+ "La retrollamada (*callback*) es llamada con el objeto Future como su único "
270
+ "argumento."
268
271
269
272
#: ../Doc/library/asyncio-future.rst:148
270
273
msgid ""
271
274
"If the Future is already *done* when this method is called, the callback is "
272
275
"scheduled with :meth:`loop.call_soon`."
273
276
msgstr ""
274
- "Si el Future ya es *done* cuando se llama a este método, el *callback* es "
275
- "programado con :meth:`loop.call_soon`."
277
+ "Si el Future ya es *done* cuando se llama a este método, la retrollamada "
278
+ "(*callback*) es programada con :meth:`loop.call_soon`."
276
279
277
280
#: ../Doc/library/asyncio-future.rst:151
278
- #, fuzzy
279
281
msgid ""
280
282
"An optional keyword-only *context* argument allows specifying a custom :"
281
283
"class:`contextvars.Context` for the *callback* to run in. The current "
282
284
"context is used when no *context* is provided."
283
285
msgstr ""
284
- "Un argumento de contexto (*context*), opcional y de tipo clave-valor "
285
- "(*keywork*), permite especificar un :class:`contextvars.Context` "
286
- "personalizado para ejecutarse en el *callback*. El contexto actual se "
287
- "utiliza cuando no se provee un contexto."
286
+ "Un argumento de contexto (*context*), opcional y de tipo clave-valor, "
287
+ "permite especificar un :class:`contextvars.Context` personalizado para "
288
+ "ejecutarse en la retrollamada ( *callback*) . El contexto actual se utiliza "
289
+ "cuando no se provee un contexto (*context*) ."
288
290
289
291
#: ../Doc/library/asyncio-future.rst:155
290
292
msgid ""
291
293
":func:`functools.partial` can be used to pass parameters to the callback, e."
292
294
"g.::"
293
295
msgstr ""
294
- ":func:`functools.partial` se puede utilizar para dar parámetros al "
295
- "*callback*, por ejemplo::"
296
+ ":func:`functools.partial` se puede utilizar para dar parámetros a la "
297
+ "retrollamada ( *callback*) , por ejemplo::"
296
298
297
299
#: ../Doc/library/asyncio-future.rst:162
298
300
msgid ""
0 commit comments