@@ -11,8 +11,8 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2022-10-25 19:47+0200\n "
14
- "PO-Revision-Date : 2021-12 -09 10:48+0800\n "
15
- "Last-Translator : Rodrigo Tobar <rtobarc@gmail .com>\n "
14
+ "PO-Revision-Date : 2022-11 -09 10:48+0800\n "
15
+ "Last-Translator : David Orejuela <daorejuela1@outlook .com>\n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-es\n "
18
18
"Plural-Forms : nplurals=2; plural=(n != 1);\n "
@@ -237,30 +237,44 @@ msgid ""
237
237
"Ask the compiler to always inline a static inline function. The compiler can "
238
238
"ignore it and decides to not inline the function."
239
239
msgstr ""
240
+ "Ordena al compilador a siempre usar *inline* en una función estática *inline*. "
241
+ "El compilador puede ignorarlo y decidir no usar *inline* en la función."
240
242
241
243
#: ../Doc/c-api/intro.rst:119
242
244
msgid ""
243
245
"It can be used to inline performance critical static inline functions when "
244
246
"building Python in debug mode with function inlining disabled. For example, "
245
247
"MSC disables function inlining when building in debug mode."
246
248
msgstr ""
249
+ "Puede ser usado para usar *inline* en funciones estáticas *inline* de "
250
+ "rendimiento crítico cuando se corre Python en modo de depuración con "
251
+ "*inline* de funciones deshabilitado. Por ejemplo, *MSC* deshabilita el *inline* "
252
+ "de funciones cuando se configura en modo de depuración."
247
253
248
254
#: ../Doc/c-api/intro.rst:123
249
255
msgid ""
250
256
"Marking blindly a static inline function with Py_ALWAYS_INLINE can result in "
251
257
"worse performances (due to increased code size for example). The compiler is "
252
258
"usually smarter than the developer for the cost/benefit analysis."
253
259
msgstr ""
260
+ "Marcar ciegamente una función estática *inline* con Py_ALWAYS_INLINE puede "
261
+ "resultar en peor rendimientos (debido a un aumento del tamaño del código, "
262
+ "por ejemplo). El compilador es generalmente más inteligente que el "
263
+ "desarrollador para el análisis costo/beneficio."
264
+
254
265
255
266
#: ../Doc/c-api/intro.rst:127
256
267
msgid ""
257
268
"If Python is :ref:`built in debug mode <debug-build>` (if the ``Py_DEBUG`` "
258
269
"macro is defined), the :c:macro:`Py_ALWAYS_INLINE` macro does nothing."
259
270
msgstr ""
271
+ "Si Python está :ref:`configurado en modo de depuración <debug-build>` (si el "
272
+ "macro ``Py_DEBUG`` está definido), el macro :c:macro:`Py_ALWAYS_INLINE` no "
273
+ "hace nada."
260
274
261
275
#: ../Doc/c-api/intro.rst:130
262
276
msgid "It must be specified before the function return type. Usage::"
263
- msgstr ""
277
+ msgstr "Debe ser especificado antes del tipo de retorno de la función. Uso:: "
264
278
265
279
#: ../Doc/c-api/intro.rst:138
266
280
msgid ""
@@ -314,10 +328,13 @@ msgid ""
314
328
"consumption: useful on LTO+PGO builds which heavily inline code (see :issue:"
315
329
"`33720`)."
316
330
msgstr ""
331
+ "Deshabilita el uso de *inline* en una función. Por ejemplo, reduce el consumo "
332
+ "de la pila C: útil en compilaciones LTO+PGO que usan mucho *inline* (ver :issue:"
333
+ "`33720`)."
317
334
318
335
#: ../Doc/c-api/intro.rst:182
319
336
msgid "Usage::"
320
- msgstr ""
337
+ msgstr "Uso:: "
321
338
322
339
#: ../Doc/c-api/intro.rst:190
323
340
msgid ""
@@ -812,6 +829,10 @@ msgid ""
812
829
"type). See :pep:`353` for details. ``PY_SSIZE_T_MAX`` is the largest "
813
830
"positive value of type :c:type:`Py_ssize_t`."
814
831
msgstr ""
832
+ "Un tipo integral con signo tal que ``sizeof(Py_ssize_t) == sizeof(size_t)``. "
833
+ "C99 no define directamente tal cosa (size_t es un tipo integral sin signo). "
834
+ "Vea :pep:`353` para más detalles. ``PY_SSIZE_T_MAX`` es el valor positivo "
835
+ "más grande del tipo :c:type:`Py_ssize_t`."
815
836
816
837
#: ../Doc/c-api/intro.rst:551
817
838
msgid "Exceptions"
@@ -1025,6 +1046,11 @@ msgid ""
1025
1046
"later, setting :c:member:`PyConfig.argv` and :c:member:`PyConfig.parse_argv` "
1026
1047
"must be set: see :ref:`Python Initialization Configuration <init-config>`."
1027
1048
msgstr ""
1049
+ ":c:func:`Py_Initialize` no establece la \" lista de argumentos de script\" "
1050
+ "(``sys.argv``). Si esta variable es necesaria por el código Python que se "
1051
+ "ejecutará más tarde, debe establecerse :c:member:`PyConfig.argv` y :c:"
1052
+ "member:`PyConfig.parse_argv`: consulte :ref:`Python Initialization "
1053
+ "Configuration <init-config>`."
1028
1054
1029
1055
#: ../Doc/c-api/intro.rst:724
1030
1056
msgid ""
0 commit comments