@@ -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-07 18:47+0200 \n "
15
- "Last-Translator : Cristián Maureira-Fredes <cmaureirafredes @gmail.com>\n "
14
+ "PO-Revision-Date : 2021-12-12 12:55-0500 \n "
15
+ "Last-Translator : Adolfo Hristo David Roque Gámez <aroquega @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/library/functools.rst:2
25
26
msgid ""
@@ -246,7 +247,6 @@ msgstr ""
246
247
"y la caché puede crecer sin límites."
247
248
248
249
#: ../Doc/library/functools.rst:162
249
- #, fuzzy
250
250
msgid ""
251
251
"If *typed* is set to true, function arguments of different types will be "
252
252
"cached separately. For example, ``f(3)`` and ``f(3.0)`` will always be "
@@ -256,8 +256,10 @@ msgid ""
256
256
msgstr ""
257
257
"Si *typed* se establece como verdadero, los argumentos de las funciones de "
258
258
"diferentes tipos se almacenarán en la memoria caché por separado. Por "
259
- "ejemplo, ``f(3)`` y ``f(3.0)`` se tratarán como llamadas distintas con "
260
- "resultados distintos."
259
+ "ejemplo, ``f(3)`` y ``f(3.0)`` siempre se tratarán como llamadas distintas "
260
+ "con resultados distintos. Si *typed* es falso, la implementación usualmente "
261
+ "pero no siempre los tratará como llamadas equivalentes y solo almacenará en "
262
+ "caché un solo resultado."
261
263
262
264
#: ../Doc/library/functools.rst:168
263
265
msgid ""
@@ -272,26 +274,24 @@ msgstr ""
272
274
"mutación de los valores no tiene ningún efecto."
273
275
274
276
#: ../Doc/library/functools.rst:173
275
- #, fuzzy
276
277
msgid ""
277
278
"To help measure the effectiveness of the cache and tune the *maxsize* "
278
279
"parameter, the wrapped function is instrumented with a :func:`cache_info` "
279
280
"function that returns a :term:`named tuple` showing *hits*, *misses*, "
280
281
"*maxsize* and *currsize*."
281
282
msgstr ""
282
- "Para ayudar a medir la efectividad del cache y afinar el parámetro "
283
+ "Para ayudar a medir la efectividad de la caché y afinar el parámetro "
283
284
"*maxsize*, la función envolvente está instrumentada con una función :func:"
284
285
"`cache_info` que retorna un :term:`named tuple` mostrando *hits*, *misses*, "
285
- "*maxsize* y *currsize*. En un entorno multi-hilo, los aciertos y los fallos "
286
- "son aproximados."
286
+ "*maxsize* y *currsize*."
287
287
288
288
#: ../Doc/library/functools.rst:178
289
289
msgid ""
290
290
"The decorator also provides a :func:`cache_clear` function for clearing or "
291
291
"invalidating the cache."
292
292
msgstr ""
293
293
"El decorador también proporciona una función :func:`cache_clear` para "
294
- "limpiar o invalidar el caché."
294
+ "limpiar o invalidar la caché."
295
295
296
296
#: ../Doc/library/functools.rst:181
297
297
msgid ""
@@ -308,6 +308,8 @@ msgid ""
308
308
"The cache keeps references to the arguments and return values until they age "
309
309
"out of the cache or until the cache is cleared."
310
310
msgstr ""
311
+ "La caché mantiene referencias de los argumentos y retorna los valores hasta "
312
+ "que se caduquen de la caché o hasta que se borre la caché."
311
313
312
314
#: ../Doc/library/functools.rst:188
313
315
msgid ""
@@ -350,8 +352,8 @@ msgid ""
350
352
"programming <https://en.wikipedia.org/wiki/Dynamic_programming>`_ technique::"
351
353
msgstr ""
352
354
"Ejemplo de computar eficientemente los \" números de Fibonacci\" <https://en."
353
- "wikipedia.org/wiki/Fibonacci_number>`_ usando un cache para implementar una "
354
- "\" programación dinámica\" <https://en.wikipedia.org/wiki/"
355
+ "wikipedia.org/wiki/Fibonacci_number>`_ usando una memoria caché para "
356
+ "implementar una \" programación dinámica\" <https://en.wikipedia.org/wiki/"
355
357
"Dynamic_programming>`_ técnica::"
356
358
357
359
#: ../Doc/library/functools.rst:239
@@ -412,6 +414,10 @@ msgid ""
412
414
"comparison operator, *total_ordering* will not implement it again, even if "
413
415
"the original method is abstract."
414
416
msgstr ""
417
+ "Este decorador no intenta anular métodos que han sido declarados en la clase "
418
+ "*sus superclases*. Lo que significa que si una superclase define un operador "
419
+ "de comparación, *total_ordering* no lo implementará de nuevo, incluso si el "
420
+ "método original es abstracto."
415
421
416
422
#: ../Doc/library/functools.rst:294
417
423
msgid ""
0 commit comments