@@ -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 :2024-11-21 16:38-0300\n "
14
- "PO-Revision-Date :2021-12-09 10:18+0800 \n "
14
+ "PO-Revision-Date :2025-10-07 00:02-0600 \n "
15
15
"Last-Translator :Rodrigo Tobar <rtobarc@gmail.com>\n "
16
- "Language :es\n "
17
16
"Language-Team :python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17
+ "Language : es \n "
19
18
"MIME-Version :1.0\n "
20
19
"Content-Type :text/plain; charset=utf-8\n "
21
20
"Content-Transfer-Encoding :8bit\n "
21
+ "Plural-Forms :nplurals=2; plural=(n != 1);\n "
22
22
"Generated-By :Babel 2.16.0\n "
23
+ "X-Generator :Poedit 3.7\n "
23
24
24
25
#: ../Doc/c-api/complex.rst:6
25
26
msgid "Complex Number Objects"
@@ -53,7 +54,6 @@ msgstr ""
53
54
"desreferenciarlas a través de punteros. Esto es consistente en toda la API."
54
55
55
56
#: ../Doc/c-api/complex.rst:26
56
- #, fuzzy
57
57
msgid ""
58
58
"The C structure which corresponds to the value portion of a Python complex "
59
59
"number object. Most of the functions for dealing with complex number "
@@ -63,11 +63,11 @@ msgstr ""
63
63
"La estructura C que corresponde a la porción de valor de un objeto de número "
64
64
"complejo de Python. La mayoría de las funciones para tratar con objetos de "
65
65
"números complejos utilizan estructuras de este tipo como valores de entrada "
66
- "o salida, según corresponda. Se define como:: "
66
+ "o salida, según corresponda."
67
67
68
68
#: ../Doc/c-api/complex.rst:33
69
69
msgid "The structure is defined as::"
70
- msgstr ""
70
+ msgstr "La estructura se define como:: "
71
71
72
72
#: ../Doc/c-api/complex.rst:35
73
73
msgid ""
@@ -76,6 +76,10 @@ msgid ""
76
76
" double imag;\n"
77
77
"} Py_complex;"
78
78
msgstr ""
79
+ "typedef struct {\r\n"
80
+ " double real;\r\n"
81
+ " double imag;\r\n"
82
+ "} Py_complex;"
79
83
80
84
#: ../Doc/c-api/complex.rst:43
81
85
msgid ""
@@ -118,13 +122,12 @@ msgstr ""
118
122
"C :c:type:`Py_complex`."
119
123
120
124
#: ../Doc/c-api/complex.rst:70
121
- #, fuzzy
122
125
msgid ""
123
126
"If *divisor* is null, this method returns zero and sets :c:data:`errno` to :"
124
127
"c:macro:`!EDOM`."
125
128
msgstr ""
126
129
"Si *divisor* es nulo, este método retorna cero y establece :c:data:`errno` "
127
- "en :c:data:` EDOM`."
130
+ "en :c:macro:`! EDOM`."
128
131
129
132
#: ../Doc/c-api/complex.rst:76
130
133
msgid ""
@@ -135,13 +138,12 @@ msgstr ""
135
138
"C :c:type:`Py_complex`."
136
139
137
140
#: ../Doc/c-api/complex.rst:79
138
- #, fuzzy
139
141
msgid ""
140
142
"If *num* is null and *exp* is not a positive real number, this method "
141
143
"returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`."
142
144
msgstr ""
143
145
"Si *num* es nulo y *exp* no es un número real positivo, este método retorna "
144
- "cero y establece :c:data:`errno` a :c:data:` EDOM`."
146
+ "cero y establece :c:data:`errno` a :c:macro:`! EDOM`."
145
147
146
148
#: ../Doc/c-api/complex.rst:84
147
149
msgid "Complex Numbers as Python Objects"
@@ -182,59 +184,57 @@ msgstr ""
182
184
"éxito."
183
185
184
186
#: ../Doc/c-api/complex.rst:112
185
- #, fuzzy
186
187
msgid ""
187
188
"Create a new Python complex number object from a C :c:type:`Py_complex` "
188
189
"value. Return ``NULL`` with an exception set on error."
189
190
msgstr ""
190
191
"Crea un nuevo objeto de número complejo de Python a partir de un valor C :c:"
191
- "type:`Py_complex`."
192
+ "type:`Py_complex`. Retorna ``NULL`` con una excepción establecida en caso de "
193
+ "error."
192
194
193
195
#: ../Doc/c-api/complex.rst:118
194
- #, fuzzy
195
196
msgid ""
196
197
"Return a new :c:type:`PyComplexObject` object from *real* and *imag*. Return "
197
198
"``NULL`` with an exception set on error."
198
- msgstr "Retorna un nuevo objeto :c:type:`PyComplexObject` de *real* e *imag*."
199
+ msgstr ""
200
+ "Retorna un nuevo objeto :c:type:`PyComplexObject` de *real* e *imag*. "
201
+ "Retorna ``NULL`` con una excepción establecida en caso de error."
199
202
200
203
#: ../Doc/c-api/complex.rst:124
201
- #, fuzzy
202
204
msgid "Return the real part of *op* as a C :c:expr:`double`."
203
- msgstr "Retorna la parte real de *op* como :c:type :`double` en C."
205
+ msgstr "Retorna la parte real de *op* como :c:expr :`double` en C."
204
206
205
207
#: ../Doc/c-api/complex.rst:126
206
- #, fuzzy
207
208
msgid ""
208
209
"If *op* is not a Python complex number object but has a :meth:`~object."
209
210
"__complex__` method, this method will first be called to convert *op* to a "
210
211
"Python complex number object. If :meth:`!__complex__` is not defined then "
211
212
"it falls back to call :c:func:`PyFloat_AsDouble` and returns its result."
212
213
msgstr ""
213
214
"Si *op* no es un objeto de número complejo de Python pero tiene un método :"
214
- "meth:`__complex__`, primero se llamará a este método para convertir *op* en "
215
- "un objeto de número complejo de Python. Si ``__complex__()`` no está "
216
- "definido, vuelve a :meth:`__float__`. Si ``__float__()`` no está definido, "
217
- "entonces recurre a :meth:`__index__`. En caso de falla, este método retorna "
218
- "``-1.0`` como un valor real."
215
+ "meth:`~object.__complex__`, primero se llamará a este método para convertir "
216
+ "*op* en un objeto de número complejo de Python. Si :meth:`!__complex__` no "
217
+ "está definido, entonces recurre a :c:func:`PyFloat_AsDouble` y retorna su "
218
+ "resultado."
219
219
220
220
#: ../Doc/c-api/complex.rst:132 ../Doc/c-api/complex.rst:148
221
221
msgid ""
222
222
"Upon failure, this method returns ``-1.0`` with an exception set, so one "
223
223
"should call :c:func:`PyErr_Occurred` to check for errors."
224
224
msgstr ""
225
+ "En caso de falla, este método retorna ``-1.0`` con una excepción "
226
+ "establecida, por lo que se debe llamar :c:func:`PyErr_Occurred` para "
227
+ "verificar si hay errores."
225
228
226
229
#: ../Doc/c-api/complex.rst:135 ../Doc/c-api/complex.rst:151
227
- #, fuzzy
228
230
msgid "Use :meth:`~object.__complex__` if available."
229
- msgstr "Use :meth:`__index__ ` si está disponible."
231
+ msgstr "Use :meth:`~object.__complex__ ` si está disponible."
230
232
231
233
#: ../Doc/c-api/complex.rst:140
232
- #, fuzzy
233
234
msgid "Return the imaginary part of *op* as a C :c:expr:`double`."
234
- msgstr "Retorna la parte imaginaria de *op* como un :c:type :`double` de C."
235
+ msgstr "Retorna la parte imaginaria de *op* como un :c:expr :`double` de C."
235
236
236
237
#: ../Doc/c-api/complex.rst:142
237
- #, fuzzy
238
238
msgid ""
239
239
"If *op* is not a Python complex number object but has a :meth:`~object."
240
240
"__complex__` method, this method will first be called to convert *op* to a "
@@ -243,18 +243,16 @@ msgid ""
243
243
"success."
244
244
msgstr ""
245
245
"Si *op* no es un objeto de número complejo de Python pero tiene un método :"
246
- "meth:`__complex__`, primero se llamará a este método para convertir *op* en "
247
- "un objeto de número complejo de Python. Si ``__complex__()`` no está "
248
- "definido, vuelve a :meth:`__float__`. Si ``__float__()`` no está definido, "
249
- "entonces recurre a :meth:`__index__`. En caso de falla, este método retorna "
250
- "``-1.0`` como un valor real."
246
+ "meth:`~object.__complex__`, primero se llamará a este método para convertir "
247
+ "*op* en un objeto de número complejo de Python. Si :meth:`!__complex__` no "
248
+ "está definido, entonces recurre a :c:func:`PyFloat_AsDouble` y retorna "
249
+ "``0.0`` en caso de éxito."
251
250
252
251
#: ../Doc/c-api/complex.rst:156
253
252
msgid "Return the :c:type:`Py_complex` value of the complex number *op*."
254
253
msgstr "Retorna el valor :c:type:`Py_complex` del número complejo *op*."
255
254
256
255
#: ../Doc/c-api/complex.rst:158
257
- #, fuzzy
258
256
msgid ""
259
257
"If *op* is not a Python complex number object but has a :meth:`~object."
260
258
"__complex__` method, this method will first be called to convert *op* to a "
@@ -263,29 +261,30 @@ msgid ""
263
261
"defined then it falls back to :meth:`~object.__index__`."
264
262
msgstr ""
265
263
"Si *op* no es un objeto de número complejo de Python pero tiene un método :"
266
- "meth:`__complex__`, primero se llamará a este método para convertir *op* en "
267
- "un objeto de número complejo de Python. Si ``__complex__()`` no está "
268
- "definido, vuelve a :meth:`__float__`. Si ``__float__()`` no está definido, "
269
- "entonces recurre a :meth:`__index__`. En caso de falla, este método retorna "
270
- "``-1.0`` como un valor real."
264
+ "meth:`~object.__complex__`, primero se llamará a este método para convertir "
265
+ "*op* en un objeto de número complejo de Python. Si :meth:`!__complex__` no "
266
+ "está definido, entonces recurre a :meth:`~object.__float__`. Si :meth:`!"
267
+ "__float__` no está definido, entonces recurre a :meth:`~object.__index__`."
271
268
272
269
#: ../Doc/c-api/complex.rst:164
273
270
msgid ""
274
271
"Upon failure, this method returns :c:type:`Py_complex` with :c:member:"
275
272
"`~Py_complex.real` set to ``-1.0`` and with an exception set, so one should "
276
273
"call :c:func:`PyErr_Occurred` to check for errors."
277
274
msgstr ""
275
+ "En caso de falla, este método retorna :c:type:`Py_complex` con :c:member:"
276
+ "`~Py_complex.real` establecido en ``-1.0`` y con una excepción establecida, "
277
+ "por lo que se debe llamar a :c:func:`PyErr_Occurred` para verificar si hay "
278
+ "errores."
278
279
279
280
#: ../Doc/c-api/complex.rst:168
280
- #, fuzzy
281
281
msgid "Use :meth:`~object.__index__` if available."
282
- msgstr "Use :meth:`__index__` si está disponible."
282
+ msgstr "Use :meth:`~object. __index__` si está disponible."
283
283
284
284
#: ../Doc/c-api/complex.rst:8
285
285
msgid "object"
286
- msgstr ""
286
+ msgstr "object "
287
287
288
288
#: ../Doc/c-api/complex.rst:8
289
- #, fuzzy
290
289
msgid "complex number"
291
- msgstr "Objetos de números complejos "
290
+ msgstr "complex number "