8000 Traducido library/itertools by cmaureir · Pull Request #2285 · python/python-docs-es · GitHub
[go: up one dir, main page]

Skip to content

Traducido library/itertools #2285

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Marcos Medrano <marcosmedrano0@gmail.com>
  • Loading branch information
cmaureir and mmmarcos authored Feb 26, 2023
commit d5495c19465f7bf138372ff8b9086f619a2d08b6
6 changes: 3 additions & 3 deletions library/itertools.po
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ msgid ""
"``None``, then iteration continues until the iterator is exhausted, if at "
"all; otherwise, it stops at the specified position."
msgstr ""
"Cree un iterador que devuelva los elementos seleccionados del iterable. Si "
"Crea un iterador que retorna los elementos seleccionados del iterable. Si "
"*start* es distinto de cero, los elementos del iterable se omiten hasta que "
"se alcanza el inicio. Posteriormente, los elementos se devuelven "
"consecutivamente a menos que *step* se establezca en un valor superior a "
Expand Down Expand Up @@ -892,7 +892,7 @@ msgid ""
"Make an iterator that returns *object* over and over again. Runs "
"indefinitely unless the *times* argument is specified."
msgstr ""
"Cree un iterador que devuelva *object* una y otra vez. Se ejecuta "
"Crea un iterador que retorna *object* una y otra vez. Se ejecuta "
"indefinidamente a menos que se especifique el argumento *times*."

#: ../Doc/library/itertools.rst:606
Expand All @@ -910,7 +910,7 @@ msgid ""
"already grouped in tuples from a single iterable (when the data has been "
"\"pre-zipped\")."
msgstr ""
"Cree un iterador que calcule la función usando argumentos obtenidos del "
"Crea un iterador que calcula la función usando argumentos obtenidos del "
"iterable. Se usa en lugar de :func:`map` cuando los parámetros de argumento "
"ya están agrupados en tuplas de un solo iterable (cuando los datos se han "
"\"comprimido previamente\")."
Expand Down
0