@@ -11,15 +11,16 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2021-10-16 21:42+0200\n "
14
- "PO-Revision-Date : 2021-08-16 13:01+0200 \n "
14
+ "PO-Revision-Date : 2021-10-29 14:59-0300 \n "
15
15
"Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1)\n "
18
+ "Plural-Forms : nplurals=2; plural=(n != 1); \n "
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=utf-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
22
"Generated-By : Babel 2.9.1\n "
23
+ "X-Generator : Poedit 2.3\n "
23
24
24
25
#: ../Doc/c-api/object.rst:6
25
26
msgid "Object Protocol"
@@ -447,13 +448,13 @@ msgstr ""
447
448
"excepto cuando se necesita el recuento de referencias incrementado."
448
449
449
450
#: ../Doc/c-api/object.rst:300
450
- #, fuzzy
451
451
msgid ""
452
452
"Return non-zero if the object *o* is of type *type* or a subtype of *type*, "
453
453
"and ``0`` otherwise. Both parameters must be non-``NULL``."
454
454
msgstr ""
455
- "Retorna verdadero si el objeto *o* es de tipo *type* o un subtipo de *type*. "
456
- "Ambos parámetros no deben ser ``NULL``."
455
+ "Retorna un valor no-nulo si el objeto *o* es de tipo *type* o un subtipo de "
456
+ "*type*, y ``0`` en cualquier otro caso. Ninguno de los dos parámetros debe "
457
+ "ser ``NULL``."
457
458
458
459
#: ../Doc/c-api/object.rst:309
459
460
msgid ""
@@ -468,7 +469,6 @@ msgstr ""
468
469
"Python ``len(o)``."
469
470
470
471
#: ../Doc/c-api/object.rst:316
471
- #, fuzzy
472
472
msgid ""
473
473
"Return an estimated length for the object *o*. First try to return its "
474
474
"actual length, then an estimate using :meth:`~object.__length_hint__`, and "
@@ -480,7 +480,7 @@ msgstr ""
480
480
"su longitud real, luego una estimación usando :meth:`~object."
481
481
"__length_hint__`, y finalmente retorna el valor predeterminado. En caso de "
482
482
"error, retorna ``-1``. Este es el equivalente a la expresión de Python "
483
- "``operator.length_hint (o, default )``."
483
+ "``operator.length_hint(o, defaultvalue )``."
484
484
485
485
#: ../Doc/c-api/object.rst:326
486
486
msgid ""
@@ -546,6 +546,11 @@ msgid ""
546
546
"`AsyncIterator`, this returns itself. Raises :exc:`TypeError` and returns "
547
547
"``NULL`` if the object cannot be iterated."
548
548
msgstr ""
549
+ "Esto es equivalente a la expresión de Python ``aiter(o)``. Toma un objeto :"
550
+ "class:`AsyncIterable` y retorna :class:`AsyncIterator`. Este es típicamente "
551
+ "un nuevo iterador, pero si el argumento es :class:`AsyncIterator`, se "
552
+ "retornará a sí mismo. Lanza :exc:`TypeError` y retorna ``NULL`` si el objeto "
553
+ "no puede ser iterado."
549
554
550
555
#~ msgid ""
551
556
#~ "Determine if the object *o* is callable. Return ``1`` if the object is "
0 commit comments