1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# This file is distributed under the same license as the Python package.
3
- # Maintained by the python-doc-es workteam.
3
+ # Maintained by the python-doc-es workteam.
4
4
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12
+ "PO-Revision-Date : 2020-05-09 15:46+0200\n "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"Content-Transfer-Encoding : 8bit\n "
17
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
18
+ "Last-Translator : \n "
19
+ "Language : es\n "
20
+ "X-Generator : Poedit 2.3\n "
19
21
20
22
#: ../Doc/c-api/iterator.rst:6
21
23
msgid "Iterator Objects"
22
- msgstr ""
24
+ msgstr "Objetos iteradores "
23
25
24
26
#: ../Doc/c-api/iterator.rst:8
25
27
msgid ""
@@ -29,34 +31,48 @@ msgid ""
29
31
"sentinel value, calling the callable for each item in the sequence, and "
30
32
"ending the iteration when the sentinel value is returned."
31
33
msgstr ""
34
+ "Python proporciona dos objetos iteradores de propósito general. El primero, "
35
+ "un iterador de secuencia, funciona con una secuencia arbitraria que admite "
36
+ "el método :meth:`__getitem__`. El segundo funciona con un objeto invocable y "
37
+ "un valor centinela, llamando al invocable para cada elemento de la secuencia "
38
+ "y finalizando la iteración cuando se devuelve el valor centinela."
32
39
33
40
#: ../Doc/c-api/iterator.rst:17
34
41
msgid ""
35
42
"Type object for iterator objects returned by :c:func:`PySeqIter_New` and the "
36
43
"one-argument form of the :func:`iter` built-in function for built-in "
37
44
"sequence types."
38
45
msgstr ""
46
+ "Objeto tipo para objetos iteradores devueltos por :c:func:`PySeqIter_New` y "
47
+ "la forma de un argumento de la función incorporada :func:`iter` para los "
48
+ "tipos de secuencia incorporados."
39
49
40
50
#: ../Doc/c-api/iterator.rst:24
41
51
msgid "Return true if the type of *op* is :c:data:`PySeqIter_Type`."
42
- msgstr ""
52
+ msgstr "Retorna verdadero si el tipo de *op* es :c:data:`PySeqIter_Type`. "
43
53
44
54
#: ../Doc/c-api/iterator.rst:29
45
55
msgid ""
46
56
"Return an iterator that works with a general sequence object, *seq*. The "
47
57
"iteration ends when the sequence raises :exc:`IndexError` for the "
48
58
"subscripting operation."
49
59
msgstr ""
60
+ "Retorna un iterador que funciona con un objeto de secuencia general, *seq*. "
61
+ "La iteración termina cuando la secuencia lanza :exc:`IndexError` para la "
62
+ "operación de suscripción."
50
63
51
64
#: ../Doc/c-api/iterator.rst:36
52
65
msgid ""
53
66
"Type object for iterator objects returned by :c:func:`PyCallIter_New` and "
54
67
"the two-argument form of the :func:`iter` built-in function."
55
68
msgstr ""
69
+ "Objeto tipo para los objetos iteradores devueltos por :c:func:"
70
+ "`PyCallIter_New` y la forma de dos argumentos de la función incorporada :"
71
+ "func:`iter`."
56
72
57
73
#: ../Doc/c-api/iterator.rst:42
58
74
msgid "Return true if the type of *op* is :c:data:`PyCallIter_Type`."
59
- msgstr ""
75
+ msgstr "Retorna verdadero si el tipo de *op* es :c:data:`PyCallIter_Type`. "
60
76
61
77
#: ../Doc/c-api/iterator.rst:47
62
78
msgid ""
@@ -65,3 +81,7 @@ msgid ""
65
81
"should return the next item in the iteration. When *callable* returns a "
66
82
"value equal to *sentinel*, the iteration will be terminated."
67
83
msgstr ""
84
+ "Retorna un nuevo iterador. El primer parámetro, *callable*, puede ser "
85
+ "cualquier objeto invocable de Python que se pueda invocar sin parámetros; "
86
+ "cada llamada debe retornar el siguiente elemento en la iteración. Cuando "
87
+ "*callable* retorna un valor igual a *sentinel*, la iteración finalizará."
0 commit comments