Skip to content

Commit 853d8f6

Browse files
committed
included list,locals,map
1 parent 85d2af6 commit 853d8f6

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

library/functions.po

+18-1
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-07 14:37+0200\n"
14-
"PO-Revision-Date: 2020-05-23 13:46+0200\n"
14+
"PO-Revision-Date: 2020-05-23 14:16+0200\n"
1515
"Last-Translator: \n"
1616
"Language: es\n"
1717
"Language-Team: python-doc-esMIME-Version: 1.0\n"
@@ -1758,6 +1758,8 @@ msgid ""
17581758
"Rather than being a function, :class:`list` is actually a mutable sequence "
17591759
"type, as documented in :ref:`typesseq-list` and :ref:`typesseq`."
17601760
msgstr ""
1761+
"Más que una función, :class:`list` es realmente un tipo de secuencia "
1762+
"mutable, como está documentado en :ref:`typesseq-list` y :ref:`typesseq`."
17611763

17621764
#: ../Doc/library/functions.rst:904
17631765
msgid ""
@@ -1766,12 +1768,20 @@ msgid ""
17661768
"blocks, but not in class blocks. Note that at the module level, :func:"
17671769
"`locals` and :func:`globals` are the same dictionary."
17681770
msgstr ""
1771+
"Actualiza y devuelve un diccionario representando la tabla de símbolos "
1772+
"locales actual. Las variables libres son devueltas por :func:`locals` cuando "
1773+
"ésta es llamada en bloques de funciones, pero no en bloques de clases. "
1774+
"Nótese que a nivel de módulo, :func:`locals` y :func:`globals` son el mismo "
1775+
"diccionario."
17691776

17701777
#: ../Doc/library/functions.rst:910
17711778
msgid ""
17721779
"The contents of this dictionary should not be modified; changes may not "
17731780
"affect the values of local and free variables used by the interpreter."
17741781
msgstr ""
1782+
"Los contenidos de este diccionario no deben ser modificados; sus cambios no "
1783+
"afectarán los valores de las variables locales y libres utilizadas por el "
1784+
"intérprete."
17751785

17761786
#: ../Doc/library/functions.rst:915
17771787
msgid ""
@@ -1782,6 +1792,13 @@ msgid ""
17821792
"the shortest iterable is exhausted. For cases where the function inputs are "
17831793
"already arranged into argument tuples, see :func:`itertools.starmap`\\."
17841794
msgstr ""
1795+
"Devuelve un iterador que aplica *function* a cada elemento de *iterable*, "
1796+
"devolviendo el resultado. Si se le pasan argumentos adicionales de tipo "
1797+
"*iterable*, *function* debe tomar tantos argumentos como *iterables* y es "
1798+
"aplicado a los elementos de todos ellos en paralelo. Con iterables "
1799+
"múltiples, el iterador para cuando el iterable más corto se agota. Para "
1800+
"casos donde las entradas de la función ya están organizados como tuplas de "
1801+
"argumentos, ver :func:`itertools.starmap`\\."
17851802

17861803
#: ../Doc/library/functions.rst:926
17871804
msgid ""

0 commit comments

Comments
 (0)