@@ -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-22 19:13 -0500\n "
15
- "Last-Translator : \n "
14
+ "PO-Revision-Date : 2021-12-14 07:45 -0500\n "
15
+ "
Last-Translator :
Adolfo Hristo David Roque Gámez <[email protected] > \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 3.0\n "
23
24
24
25
#: ../Doc/library/types.rst:2
25
26
msgid ":mod:`types` --- Dynamic type creation and names for built-in types"
@@ -77,7 +78,6 @@ msgstr ""
77
78
"los argumentos por palabra clave (tal como ``metaclass``)."
78
79
79
80
#: ../Doc/library/types.rst:33
80
- #, fuzzy
81
81
msgid ""
82
82
"The *exec_body* argument is a callback that is used to populate the freshly "
83
83
"created class namespace. It should accept the class namespace as its sole "
@@ -87,9 +87,9 @@ msgid ""
87
87
msgstr ""
88
88
"El argumento *exec_body* es una retrollamada que se usa para rellenar el "
89
89
"espacio de nombres de clase recién creado. Debe aceptar el espacio de nombre "
90
- "de clase como su único argumento y actualizar el espacio de nombre "
90
+ "de clase como su único argumento y actualizar el espacio de nombres "
91
91
"directamente con el contenido de la clase. Si no se proporciona ninguna "
92
- "retrollamada, tiene el mismo efecto que pasar ``lambda ns: ns ``."
92
+ "retrollamada, tiene el mismo efecto que pasar ``lambda ns: None ``."
93
93
94
94
#: ../Doc/library/types.rst:43
95
95
msgid "Calculates the appropriate metaclass and creates the class namespace."
@@ -212,7 +212,7 @@ msgstr "Los nombres estándar son definidos para los siguientes tipos:"
212
212
213
213
#: ../Doc/library/types.rst:108
214
214
msgid "The type of :data:`None`."
215
- msgstr ""
215
+ msgstr "El tipo de :data:`None`. "
216
216
217
217
#: ../Doc/library/types.rst:116
218
218
msgid ""
@@ -335,7 +335,7 @@ msgstr ""
335
335
336
336
#: ../Doc/library/types.rst:204
337
337
msgid "The type of :data:`NotImplemented`."
338
- msgstr ""
338
+ msgstr "El tipo de :data:`NotImplemented`. "
339
339
340
340
#: ../Doc/library/types.rst:211
341
341
msgid ""
@@ -353,7 +353,6 @@ msgstr ""
353
353
"como ``dict.__dict__['fromkeys']``."
354
354
355
355
#: ../Doc/library/types.rst:226
356
- #, fuzzy
357
356
msgid ""
358
357
"The type of :term:`modules <module>`. The constructor takes the name of the "
359
358
"module to be created and optionally its :term:`docstring`."
@@ -383,6 +382,8 @@ msgid ""
383
382
"This attribute is to match :attr:`importlib.machinery.ModuleSpec.loader` as "
384
383
"stored in the attr:`__spec__` object."
385
384
msgstr ""
385
+ "Este atributo va a coincidir con :attr:`importlib.machinery.ModuleSpec."
386
+ "loader` como se almacena en el objeto attr:`__spec__`."
386
387
387
388
#: ../Doc/library/types.rst:245
388
389
msgid ""
@@ -391,6 +392,10 @@ msgid ""
391
392
"`__spec__` attribute instead or use ``getattr(module, \" __loader__\" , "
392
393
"None)`` if you explicitly need to use this attribute."
393
394
msgstr ""
395
+ "Una futura versión de Python puede dejar de establecer este atributo por "
396
+ "defecto. Para cuidarse de este cambio potencial, lea preferiblemente del "
397
+ "atributo :attr:`__spec__` en su lugar o use ``getattr(module, \" __loader__"
398
+ "\" , None)`` si explícitamente necesita usar este atributo."
394
399
395
400
#: ../Doc/library/types.rst:251 ../Doc/library/types.rst:276
396
401
msgid "Defaults to ``None``. Previously the attribute was optional."
@@ -402,6 +407,8 @@ msgid ""
402
407
"The name of the module. Expected to match :attr:`importlib.machinery."
403
408
"ModuleSpec.name`."
404
409
msgstr ""
410
+ "El nombre del módulo. Se espera que coincida con :attr:`importlib.machinery."
411
+ "ModuleSpec.name`."
405
412
406
413
#: ../Doc/library/types.rst:261
407
414
msgid ""
@@ -421,6 +428,8 @@ msgid ""
421
428
"This attribute is to match :attr:`importlib.machinery.ModuleSpec.parent` as "
422
429
"stored in the attr:`__spec__` object."
423
430
msgstr ""
431
+ "Este atributo va a coincidir con :attr:`importlib.machinery.ModuleSpec."
432
+ "parent` como se guarda en el objeto attr:`__spec__`."
424
433
425
434
#: ../Doc/library/types.rst:270
426
435
msgid ""
@@ -429,16 +438,22 @@ msgid ""
429
438
"`__spec__` attribute instead or use ``getattr(module, \" __package__\" , "
430
439
"None)`` if you explicitly need to use this attribute."
431
440
msgstr ""
441
+ "Una futura versión de Python puede dejar de establecer este atributo por "
442
+ "defecto. Para cuidarse de este cambio potencial, lea preferiblemente del "
443
+ "atributo :attr:`__spec__` en su lugar o use ``getattr(module, \" __package__"
444
+ "\" , None)`` si explícitamente necesita usar este atributo."
432
445
433
446
#: ../Doc/library/types.rst:281
434
447
msgid ""
435
448
"A record of the module's import-system-related state. Expected to be an "
436
449
"instance of :class:`importlib.machinery.ModuleSpec`."
437
450
msgstr ""
451
+ "Un registro del estado relacionado con el sistema de importación del módulo. "
452
+ "Se espera que sea una instancia de :class:`importlib.machinery.ModuleSpec`."
438
453
439
454
#: ../Doc/library/types.rst:289
440
455
msgid "The type of :data:`Ellipsis`."
441
- msgstr ""
456
+ msgstr "El tipo de :data:`Ellipsis`. "
442
457
443
458
#: ../Doc/library/types.rst:295
444
459
msgid ""
@@ -460,11 +475,11 @@ msgstr ""
460
475
461
476
#: ../Doc/library/types.rst:311
462
477
msgid "This type can now be subclassed."
463
- msgstr "Este tipo ahora puede tener subclases "
478
+ msgstr "Este tipo ahora puede heredarse. "
464
479
465
480
#: ../Doc/library/types.rst:317
466
481
msgid "The type of :ref:`union type expressions<types-union>`."
467
- msgstr ""
482
+ msgstr "El tipo de :ref:`union type expressions<types-union>`. "
468
483
469
484
#: ../Doc/library/types.rst:323
470
485
msgid "The type of traceback objects such as found in ``sys.exc_info()[2]``."
0 commit comments