@@ -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-03-19 11:16+0100\n "
14
- "PO-Revision-Date : 2020-06-09 20:48-0500 \n "
15
- "Last-Translator : Carlos Joel Delgado Pizarro <cj@carlosjoel.net >\n "
14
+ "PO-Revision-Date : 2021-03-19 22:57+0100 \n "
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
+ "Plura
8000
l-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.8.0\n "
23
+ "X-Generator : Poedit 2.4.1\n "
23
24
24
25
#: ../Doc/reference/datamodel.rst:6
25
26
msgid "Data model"
@@ -295,6 +296,10 @@ msgid ""
295
296
"currently evaluates as true, it will emit a :exc:`DeprecationWarning`. It "
296
297
"will raise a :exc:`TypeError` in a future version of Python."
297
298
msgstr ""
299
+ "La evaluación de ``NotImplemented`` en un contexto booleano está en desuso. "
300
+ "Si bien actualmente se evalúa como verdadero, lanzará un :exc:"
301
+ "`DeprecationWarning`. Lanzará un :exc:`TypeError` en una versión futura de "
302
+ "Python."
298
303
299
304
#: ../Doc/reference/datamodel.rst:179
300
305
msgid "Ellipsis"
@@ -334,32 +339,40 @@ msgid ""
334
339
"The string representations of the numeric classes, computed by :meth:"
335
340
"`__repr__` and :meth:`__str__`, have the following properties:"
336
341
msgstr ""
342
+ "Las representaciones de cadena de las clases numéricas, calculadas por :meth:"
343
+ "`__repr__` y :meth:`__str__`, tienen las siguientes propiedades:"
337
344
338
345
#: ../Doc/reference/datamodel.rst:194
339
346
msgid ""
340
347
"They are valid numeric literals which, when passed to their class "
341
348
"constructor, produce an object having the value of the original numeric."
342
349
msgstr ""
350
+ "Son literales numéricos válidos que, cuando se pasan a su constructor de "
351
+ "clase, producen un objeto que tiene el valor del numérico original."
343
352
344
353
#: ../Doc/reference/datamodel.rst:198
345
354
msgid "The representation is in base 10, when possible."
346
- msgstr ""
355
+ msgstr "La representación está en base 10, cuando sea posible. "
347
356
348
357
#: ../Doc/reference/datamodel.rst:200
349
358
msgid ""
350
359
"Leading zeros, possibly excepting a single zero before a decimal point, are "
351
360
"not shown."
352
361
msgstr ""
362
+ "Los ceros iniciales, posiblemente excepto un solo cero antes de un punto "
363
+ "decimal,
10000
no se muestran."
353
364
354
365
#: ../Doc/reference/datamodel.rst:203
355
366
msgid ""
356
367
"Trailing zeros, possibly excepting a single zero after a decimal point, are "
357
368
"not shown."
358
369
msgstr ""
370
+ "Los ceros finales, posiblemente excepto un solo cero después de un punto "
371
+ "decimal, no se muestran."
359
372
360
373
#: ../Doc/reference/datamodel.rst:206
361
374
msgid "A sign is shown only when the number is negative."
362
- msgstr ""
375
+ msgstr "Solo se muestra un signo cuando el número es negativo. "
363
376
364
377
#: ../Doc/reference/datamodel.rst:208
365
378
msgid ""
@@ -839,16 +852,15 @@ msgid "User-defined functions"
839
852
msgstr "Funciones definidas por el usuario"
840
853
841
854
#: ../Doc/reference/datamodel.rst:482
842
- #, fuzzy
843
855
msgid ""
844
856
"A user-defined function object is created by a function definition (see "
845
857
"section :ref:`function`). It should be called with an argument list "
846
858
"containing the same number of items as the function's formal parameter list."
847
859
msgstr ""
848
- "Una objeto del tipo función, definida por el usuario, es creado por un "
849
- "definición de función (vea la sección :ref:`function`). Debe llamarse con "
850
- "una lista de argumentos que contenga el mismo número de elementos que la "
851
- "lista de parámetros formales de la función."
860
+ "Un objeto función definido por el usuario, es creado por un definición de "
861
+ "función (vea la sección :ref:`function`). Debe llamarse con una lista de "
862
+ "argumentos que contenga el mismo número de elementos que la lista de "
863
+ "parámetros formales de la función."
852
864
853
865
#: ../Doc/reference/datamodel.rst:487
854
866
msgid "Special attributes:"
@@ -1042,7 +1054,6 @@ msgid "Instance methods"
1042
1054
msgstr "Métodos de instancia"
1043
1055
1044
1056
#: ../Doc/reference/datamodel.rst:584
1045
- #, fuzzy
1046
1057
msgid ""
1047
1058
"An instance method object combines a class, a class instance and any "
1048
1059
"callable object (normally a user-defined function)."
@@ -2393,12 +2404,15 @@ msgid ""
2393
2404
"``x<=y``. To automatically generate ordering operations from a single root "
2394
2405
"operation, see :func:`functools.total_ordering`."
2395
2406
msgstr ""
2396
- "Por defecto, :meth:`__ne__` delega a :meth:`__eq__` e invierte el resultado "
2397
- "a menos que éste sea ``NotImplemented``. No existen otras relaciones "
2398
- "implícitas entre los operadores de comparación, por ejemplo, la verdad de "
2399
- "``(x<y or x==y)`` no implica que ``x<=y``. Para generar automáticamente "
2400
- "operaciones de ordenamiento a partir de una sola operación raíz, ver :func:"
2401
- "`functools.total_ordering`."
2407
+ "Por defecto, ``object`` implementa :meth:`__eq__` usando ``is``, retornando "
2408
+ "``NotImplemented`` en el caso de una comparación falsa: ``True if x is y "
2409
+ "else NotImplemented``. Para :meth:`__ne__`, por defecto delega a :meth:"
2410
+ "`__eq__` e invierte el resultado a menos que sea ``NotImplemented``. No hay "
2411
+ "otras relaciones implícitas entre los operadores de comparación o "
2412
+ "implementaciones predeterminadas; por ejemplo, la verdad de ``(x <y o x == "
2413
+ "y)`` no implica ``x <= y``. Para generar automáticamente operaciones de "
2414
+ "pedido a partir de una sola operación raíz, consulte :func:`functools."
2415
+ "total_ordering`."
2402
2416
2403
2417
#: ../Doc/reference/datamodel.rst:1406
2404
2418
msgid ""
@@ -2688,12 +2702,17 @@ msgid ""
2688
2702
"Raises an :ref:`auditing event <auditing>` ``object.__getattr__`` with "
2689
2703
"arguments ``obj``, ``name``."
2690
2704
msgstr ""
2705
+ "Lanza un :ref:`evento de auditoría <auditing>` ``object.__getattr__`` con "
2706
+ "argumentos ``obj``, ``name``."
2691
2707
2692
2708
#: ../Doc/reference/datamodel.rst:1564
2693
2709
msgid ""
2694
2710
"For certain sensitive attribute accesses, raises an :ref:`auditing event "
2695
2711
"<auditing>` ``object.__getattr__`` with arguments ``obj`` and ``name``."
2696
2712
msgstr ""
2713
+ "Para ciertos accesos a atributos sensibles, lanza un :ref:`evento de "
2714
+ "auditoría <auditing>` ``object.__getattr__`` con los argumentos ``obj`` y "
2715
+ "``name``."
2697
2716
2698
2717
#: ../Doc/reference/datamodel.rst:1571
2699
2718
msgid ""
@@ -2721,13 +2740,18 @@ msgid ""
2721
2740
"Raises an :ref:`auditing event <auditing>` ``object.__setattr__`` with "
2722
2741
"arguments ``obj``, ``name``, ``value``."
2723
2742
msgstr ""
2743
+ "Lanza un :ref:`evento de auditoría <auditing>` ``object.__setattr__`` con "
2744
+ "argumentos ``obj``, ``name``, ``value``."
2724
2745
2725
2746
#: ../Doc/reference/datamodel.rst:1581
2726
2747
msgid ""
2727
2748
"For certain sensitive attribute assignments, raises an :ref:`auditing event "
2728
2749
"<auditing>` ``object.__setattr__`` with arguments ``obj``, ``name``, "
2729
2750
"``value``."
2730
2751
msgstr ""
2752
+ "Para ciertas asignaciones de atributos sensibles, genera un :ref:`evento de "
2753
+ "auditoría <auditing>` ``object.__setattr__`` con argumentos ``obj``, "
2754
+ "``name``, ``value``."
2731
2755
2732
2756
#: ../Doc/reference/datamodel.rst:1588
2733
2757
msgid ""
@@ -2744,12 +2768,17 @@ msgid ""
2744
2768
"Raises an :ref:`auditing event <auditing>` ``object.__delattr__`` with "
2745
2769
"arguments ``obj``, ``name``."
2746
2770
msgstr ""
2771
+ "Lanza un :ref:`evento de auditoría <auditing>` ``object.__delattr__`` con "
2772
+ "argumentos ``obj``, ``name``."
2747
2773
2748
2774
#: ../Doc/reference/datamodel.rst:1593
2749
2775
msgid ""
2750
2776
"For certain sensitive attribute deletions, raises an :ref:`auditing event "
2751
2777
"<auditing>` ``object.__delattr__`` with arguments ``obj`` and ``name``."
2752
2778
msgstr ""
2779
+ "Para ciertas eliminaciones de atributos sensibles, genera un :ref:`evento de "
2780
+ "auditoría <auditing>` ``object.__delattr__`` con argumentos ``obj`` y "
2781
+ "``name``."
2753
2782
2754
2783
#: ../Doc/reference/datamodel.rst:1600
2755
2784
msgid ""
@@ -3088,9 +3117,10 @@ msgstr ""
3088
3117
"alguno, es un descriptor sin datos. Normalmente los descriptores de datos "
3089
3118
"definen ambos :meth:`__get__` y :meth:`__set__`, mientras que los "
3090
3119
"descriptores sin datos solo tienen el método :meth:`__get__`. Descriptores "
3091
- "de datos con :meth:`__set__` y :meth:`__get__` definidos siempre anulan una "
3092
- "re-definición en el diccionario de instancias. Por el contrario, los "
3093
- "descriptores sin datos pueden ser anulados por instancias."
3120
+ "de datos con :meth:`__set__` y :meth:`__get__` (o :meth:`__delete__`) "
3121
+ "definidos siempre anulan una re-definición en el diccionario de instancias. "
3122
+ "Por el contrario, los descriptores sin datos pueden ser anulados por "
3123
+ "instancias."
3094
3124
3095
3125
#: ../Doc/reference/datamodel.rst:1789
3096
3126
msgid ""
@@ -4202,6 +4232,9 @@ msgid ""
4202
4232
"meth:`__ipow__` but returns ``NotImplemented`` would fail to fall back to "
4203
4233
"``x.__pow__(y)`` and ``y.__rpow__(x)``. This bug is fixed in Python 3.10."
4204
4234
msgstr ""
4235
+ "Debido a un error en el mecanismo de envío de ``**=``, una clase que define :"
4236
+ "meth:`__ipow__` pero retorna ``NotImplemented`` no podría volver a ``x."
4237
+ "__pow__(y)`` y ``y.__rpow__(x)``. Este error se corrigió en Python 3.10."
4205
4238
4206
4239
#: ../Doc/reference/datamodel.rst:2465
4207
4240
msgid ""
0 commit comments