Skip to content

Commit 3fbf099

Browse files
committed
Traducido archivo: stdlib2
1 parent d470744 commit 3fbf099

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

tutorial/stdlib2.po

+19-6
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ msgstr ""
99
"Project-Id-Version: Python 3.8\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
12-
"PO-Revision-Date: 2020-05-06 21:44+0200\n"
12+
"PO-Revision-Date: 2020-05-08 12:05-0300\n"
1313
"Language-Team: python-doc-es\n"
1414
"MIME-Version: 1.0\n"
1515
"Content-Type: text/plain; charset=UTF-8\n"
1616
"Content-Transfer-Encoding: 8bit\n"
1717
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18-
"Last-Translator: \n"
18+
"Last-Translator: Marco Richetta <marcorichetta@gmail.com>\n"
1919
"Language: es\n"
2020
"X-Generator: Poedit 2.3\n"
2121

@@ -292,6 +292,15 @@ msgid ""
292292
"weakref objects. Typical applications include caching objects that are "
293293
"expensive to create::"
294294
msgstr ""
295+
"Este enfoque funciona bien para la mayoría de las aplicaciones pero de vez "
296+
"en cuando existe la necesidad de controlar objetos sólo mientras estén "
297+
"siendo utilizados por otra cosa. Desafortunadamente, el sólo hecho de "
298+
"controlarlos crea una referencia que los convierte en permanentes. El "
299+
"módulo :mod:`weakref` provee herramientas para controlar objetos sin crear "
300+
"una referencia. Cuando el objeto no se necesita mas, es removido "
301+
"automáticamente de una tabla de referencias débiles y se dispara una "
302+
"*callback* para objetos *weakref*. Comúnmente las aplicaciones incluyen "
303+
"cacheo de objetos que son costosos de crear::"
295304

296305
#: ../Doc/tutorial/stdlib2.rst:289
297306
msgid "Tools for Working with Lists"
@@ -369,31 +378,35 @@ msgstr ""
369378
"El módulo :mod:`decimal` provee un tipo de dato :class:`~decimal.Decimal` "
370379
"para soportar aritmética de punto flotante decimal. Comparado con :class:"
371380
"`float`, la implementación de punto flotante binario incluida, la clase es "
372-
"muy útil especialmente para:"
381+
"muy útil especialmente para"
373382

374383
#: ../Doc/tutorial/stdlib2.rst:361
375384
msgid ""
376385
"financial applications and other uses which require exact decimal "
377386
"representation,"
378387
msgstr ""
388+
"aplicaciones financieras y otros usos que requieren representación decimal "
389+
"exacta,"
379390

380391
#: ../Doc/tutorial/stdlib2.rst:363
381392
msgid "control over precision,"
382-
msgstr ""
393+
msgstr "control sobre la precisión,"
383394

384395
#: ../Doc/tutorial/stdlib2.rst:364
385396
msgid "control over rounding to meet legal or regulatory requirements,"
386-
msgstr ""
397+
msgstr "control sobre el redondeo para cumplir requisitos legales,"
387398

388399
#: ../Doc/tutorial/stdlib2.rst:365
389400
msgid "tracking of significant decimal places, or"
390-
msgstr ""
401+
msgstr "seguimiento de dígitos decimales significativos, o"
391402

392403
#: ../Doc/tutorial/stdlib2.rst:366
393404
msgid ""
394405
"applications where the user expects the results to match calculations done "
395406
"by hand."
396407
msgstr ""
408+
"aplicaciones donde el usuario espera que los resultados coincidan con "
409+
"cálculos hecho a mano."
397410

398411
#: ../Doc/tutorial/stdlib2.rst:369
399412
msgid ""

0 commit comments

Comments
 (0)