You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"function is assumed, that is, all elements of *iterable* that are false are "
1016
1016
"removed."
1017
1017
msgstr""
1018
+
"Construye un iterador a partir de aquellos elementos de *iterable* para los "
1019
+
"cuales *function* devuelve true. *iterable* puede ser una secuencia, un "
1020
+
"contenedor que soporta iteración, o un iterador. Si *function* es ``None``, "
1021
+
"se asume la función identidad, es decir, todos los elementos de *iterable* "
1022
+
"que son false son eliminados."
1018
1023
1024
+
# Mi duda es si poner function en cursiva en la traducción, para asi dejar la expresión en inglés. Supongo que sería mejor traducirlo para asegurar consistencia con la versión en inglés… Pero me parece que así queda claro. Busco opiniones :)
1019
1025
#:../Doc/library/functions.rst:559
1026
+
#,fuzzy
1020
1027
msgid""
1021
1028
"Note that ``filter(function, iterable)`` is equivalent to the generator "
1022
1029
"expression ``(item for item in iterable if function(item))`` if function is "
1023
1030
"not ``None`` and ``(item for item in iterable if item)`` if function is "
1024
1031
"``None``."
1025
1032
msgstr""
1033
+
"Ten en cuenta que ``filter(function, iterable)`` es equivalente a la "
1034
+
"expresión de un generador ``(item for item in iterable if function(item))`` "
1035
+
"si *function* no es ``None`` y a ``(item for item in iterable if item)`` si "
1036
+
"*function* es ``None``."
1026
1037
1027
1038
#:../Doc/library/functions.rst:564
1028
1039
msgid""
1029
1040
"See :func:`itertools.filterfalse` for the complementary function that "
1030
1041
"returns elements of *iterable* for which *function* returns false."
1031
1042
msgstr""
1043
+
"Ver :func:`itertools.filterfalse` para la función complementaria que "
1044
+
"devuelve los elementos de *iterable* para los cuales *function* devuelve "
1045
+
"false."
1032
1046
1033
1047
#:../Doc/library/functions.rst:574
1034
1048
msgid"Return a floating point number constructed from a number or string *x*."
0 commit comments