@@ -61,13 +61,12 @@ msgstr ""
61
61
62
62
#: ../Doc/c-api/call.rst:25
63
63
msgid ""
64
- "This convention is not only used by "
65
- "*tp_call*: :c:member:`~PyTypeObject.tp_new` "
66
- "and :c:member:`~PyTypeObject.tp_init` also pass arguments this way."
64
+ "This convention is not only used by *tp_call*: :c:member:`~PyTypeObject."
65
+ "tp_new` and :c:member:`~PyTypeObject.tp_init` also pass arguments this way."
67
66
msgstr ""
68
- "Esta convención no solo es utilizada por "
69
- "*tp_call*: :c:member:`~PyTypeObject.tp_new` "
70
- "y :c:member:`~PyTypeObject.tp_init` también pasan argumentos de esta manera."
67
+ "Esta convención no solo es utilizada por *tp_call*: :c:member:`~PyTypeObject. "
68
+ "tp_new` y :c:member:`~PyTypeObject.tp_init` también pasan argumentos de esta "
69
+ "manera."
71
70
72
71
#: ../Doc/c-api/call.rst:29
73
72
#, fuzzy
@@ -94,13 +93,12 @@ msgstr ""
94
93
msgid ""
95
94
"As rule of thumb, CPython will prefer the vectorcall for internal calls if "
96
95
"the callable supports it. However, this is not a hard rule. Additionally, "
97
- "some third-party extensions use *tp_call* directly (rather than "
98
- "using :c:func:`PyObject_Call`). Therefore, a class supporting vectorcall "
99
- "must also implement :c:member:`~PyTypeObject.tp_call`. Moreover, the "
100
- "callable must behave the same regardless of which protocol is used. The "
101
- "recommended way to achieve this is by "
102
- "setting :c:member:`~PyTypeObject.tp_call` to :c:func:`PyVectorcall_Call`. "
103
- "This bears repeating:"
96
+ "some third-party extensions use *tp_call* directly (rather than using :c:"
97
+ "func:`PyObject_Call`). Therefore, a class supporting vectorcall must also "
98
+ "implement :c:member:`~PyTypeObject.tp_call`. Moreover, the callable must "
99
+ "behave the same regardless of which protocol is used. The recommended way to "
100
+ "achieve this is by setting :c:member:`~PyTypeObject.tp_call` to :c:func:"
101
+ "`PyVectorcall_Call`. This bears repeating:"
104
102
msgstr ""
105
103
"Como regla general, CPython preferirá el vectorcall para llamadas internas "
106
104
"si el invocable lo admite. Sin embargo, esta no es una regla estricta. "
@@ -109,16 +107,16 @@ msgstr ""
109
107
"vectorcall también debe implementar :c:member:`~PyTypeObject.tp_call`. "
110
108
"Además, el invocable debe comportarse de la misma manera independientemente "
111
109
"del protocolo que se utilice. La forma recomendada de lograr esto es "
112
- "configurando :c:member:`~PyTypeObject.tp_call` "
113
- "en :c:func: `PyVectorcall_Call`. Vale la pena repetirlo:"
110
+ "configurando :c:member:`~PyTypeObject.tp_call` en :c:func: "
111
+ "`PyVectorcall_Call`. Vale la pena repetirlo:"
114
112
115
113
#: ../Doc/c-api/call.rst:57
116
114
msgid ""
117
- "A class supporting vectorcall **must** also "
118
- "implement :c:member: `~PyTypeObject.tp_call` with the same semantics."
115
+ "A class supporting vectorcall **must** also implement :c:member: "
116
+ "`~PyTypeObject.tp_call` with the same semantics."
119
117
msgstr ""
120
- "Una clase que admita vectorcall **debe** también "
121
- "implementar :c:member: `~PyTypeObject.tp_call` con la misma semántica."
118
+ "Una clase que admita vectorcall **debe** también implementar :c:member: "
119
+ "`~PyTypeObject.tp_call` con la misma semántica."
122
120
123
121
#: ../Doc/c-api/call.rst:62
124
122
msgid ""
@@ -145,17 +143,17 @@ msgstr ""
145
143
#: ../Doc/c-api/call.rst:74
146
144
#, fuzzy
147
145
msgid ""
148
- "Classes can implement the vectorcall protocol by enabling "
149
- "the :c:macro: `Py_TPFLAGS_HAVE_VECTORCALL` flag and "
150
- "setting :c:member:`~PyTypeObject. tp_vectorcall_offset` to the offset inside "
151
- "the object structure where a *vectorcallfunc* appears. This is a pointer to "
152
- "a function with the following signature:"
146
+ "Classes can implement the vectorcall protocol by enabling the :c:macro: "
147
+ "`Py_TPFLAGS_HAVE_VECTORCALL` flag and setting :c:member:`~PyTypeObject. "
148
+ "tp_vectorcall_offset` to the offset inside the object structure where a "
149
+ "*vectorcallfunc* appears. This is a pointer to a function with the following "
150
+ "signature:"
153
151
msgstr ""
154
152
"Las clases pueden implementar el protocolo vectorcall habilitando el "
155
- "indicador :const:`Py_TPFLAGS_HAVE_VECTORCALL` y la "
156
- "configuración :c:member: `~PyTypeObject.tp_vectorcall_offset` al "
157
- "desplazamiento dentro de la estructura del objeto donde aparece un "
158
- "*vectorcallfunc*. Este es un puntero a una función con la siguiente firma:"
153
+ "indicador :const:`Py_TPFLAGS_HAVE_VECTORCALL` y la configuración :c:member: "
154
+ "`~PyTypeObject.tp_vectorcall_offset` al desplazamiento dentro de la "
155
+ "estructura del objeto donde aparece un *vectorcallfunc*. Este es un puntero "
156
+ "a una función con la siguiente firma:"
159
157
160
158
#: ../Doc/c-api/call.rst:82
161
159
msgid "*callable* is the object being called."
@@ -235,21 +233,20 @@ msgid ""
235
233
"include a prepended *self* argument) very efficiently."
236
234
msgstr ""
237
235
"Siempre que puedan hacerlo de forma económica (sin asignación adicional), se "
238
- "anima a las personas que llaman a "
239
- "utilizar :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Si lo hace, permitirá que "
240
- "las personas que llaman, como los métodos enlazados, realicen sus llamadas "
241
- "posteriores (que incluyen un argumento *self* antepuesto) de manera muy "
242
- "eficiente."
236
+ "anima a las personas que llaman a utilizar :const:"
237
+ "`PY_VECTORCALL_ARGUMENTS_OFFSET`. Si lo hace, permitirá que las personas que "
238
+ "llaman, como los métodos enlazados, realicen sus llamadas posteriores (que "
239
+ "incluyen un argumento *self* antepuesto) de manera muy eficiente."
243
240
244
241
#: ../Doc/c-api/call.rst:113
245
242
msgid ""
246
243
"To call an object that implements vectorcall, use a :ref:`call API <capi-"
247
244
"call>` function as with any other callable. :c:func:`PyObject_Vectorcall` "
248
245
"will usually be most efficient."
249
246
msgstr ""
250
- "Para llamar a un objeto que implementa vectorcall, use una "
251
- "función :ref: `call API <capi-call>` como con cualquier otro "
252
- "invocable. :c:func: `PyObject_Vectorcall` normalmente será más eficiente."
247
+ "Para llamar a un objeto que implementa vectorcall, use una función :ref: "
248
+ "`call API <capi-call>` como con cualquier otro invocable. :c:func: "
249
+ "`PyObject_Vectorcall` normalmente será más eficiente."
253
250
254
251
#: ../Doc/c-api/call.rst:119
255
252
msgid "Recursion Control"
@@ -258,13 +255,12 @@ msgstr "Control de recursión"
258
255
#: ../Doc/c-api/call.rst:121
259
256
msgid ""
260
257
"When using *tp_call*, callees do not need to worry about :ref:`recursion "
261
- "<recursion>`: CPython uses :c:func:`Py_EnterRecursiveCall` "
262
- "and :c:func: `Py_LeaveRecursiveCall` for calls made using *tp_call*."
258
+ "<recursion>`: CPython uses :c:func:`Py_EnterRecursiveCall` and :c:func: "
259
+ "`Py_LeaveRecursiveCall` for calls made using *tp_call*."
263
260
msgstr ""
264
- "Cuando se usa *tp_call*, los destinatarios no necesitan preocuparse "
265
- "por :ref:`recursividad <recursion>`: CPython "
266
- "usa :c:func:`Py_EnterRecursiveCall` y :c:func:`Py_LeaveRecursiveCall` para "
267
- "llamadas realizadas usando *tp_call*."
261
+ "Cuando se usa *tp_call*, los destinatarios no necesitan preocuparse por :ref:"
262
+ "`recursividad <recursion>`: CPython usa :c:func:`Py_EnterRecursiveCall` y :c:"
263
+ "func:`Py_LeaveRecursiveCall` para llamadas realizadas usando *tp_call*."
268
264
269
265
#: ../Doc/c-api/call.rst:126
270
266
msgid ""
@@ -331,13 +327,13 @@ msgstr ""
331
327
#: ../Doc/c-api/call.rst:164
332
328
#, fuzzy
333
329
msgid ""
334
- "This is a specialized function, intended to be put in "
335
- "the :c:member: `~PyTypeObject.tp_call` slot or be used in an implementation "
336
- "of ``tp_call``. It does not check the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` "
337
- "flag and it does not fall back to ``tp_call``."
330
+ "This is a specialized function, intended to be put in the :c:member: "
331
+ "`~PyTypeObject.tp_call` slot or be used in an implementation of ``tp_call``. "
332
+ "It does not check the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag and it does "
333
+ "not fall back to ``tp_call``."
338
334
msgstr ""
339
- "Esta es una función especializada, destinada a colocarse en el "
340
- "slot :c: member:`~PyTypeObject.tp_call` o usarse en una implementación de "
335
+ "Esta es una función especializada, destinada a colocarse en el slot :c: "
336
+ "member:`~PyTypeObject.tp_call` o usarse en una implementación de "
341
337
"``tp_call``. No comprueba el flag :const:`Py_TPFLAGS_HAVE_VECTORCALL` y no "
342
338
"vuelve a ``tp_call``."
343
339
@@ -573,11 +569,11 @@ msgstr ""
573
569
#: ../Doc/c-api/call.rst:276
574
570
#, fuzzy
575
571
msgid ""
576
- "Note that if you only pass :c:expr:`PyObject *` "
577
- "args, :c:func: `PyObject_CallFunctionObjArgs` is a faster alternative."
572
+ "Note that if you only pass :c:expr:`PyObject *` args, :c:func: "
573
+ "`PyObject_CallFunctionObjArgs` is a faster alternative."
578
574
msgstr ""
579
- "Tenga en cuenta que si solo pasa :c:type:`PyObject *` "
580
- "args, :c:func: `PyObject_CallFunctionObjArgs` es una alternativa más rápida."
575
+ "Tenga en cuenta que si solo pasa :c:type:`PyObject *` args, :c:func: "
576
+ "`PyObject_CallFunctionObjArgs` es una alternativa más rápida."
581
577
582
578
#: ../Doc/c-api/call.rst:279
583
579
msgid "The type of *format* was changed from ``char *``."
@@ -609,11 +605,11 @@ msgstr ""
609
605
#: ../Doc/c-api/call.rst:297
610
606
#, fuzzy
611
607
msgid ""
612
- "Note that if you only pass :c:expr:`PyObject *` "
613
- "args, :c:func: `PyObject_CallMethodObjArgs` is a faster alternative."
608
+ "Note that if you only pass :c:expr:`PyObject *` args, :c:func: "
609
+ "`PyObject_CallMethodObjArgs` is a faster alternative."
614
610
msgstr ""
615
- "Tenga en cuenta que si solo pasa :c:type:`PyObject *` "
616
- "args, :c:func: `PyObject_CallMethodObjArgs` es una alternativa más rápida."
611
+ "Tenga en cuenta que si solo pasa :c:type:`PyObject *` args, :c:func: "
612
+ "`PyObject_CallMethodObjArgs` es una alternativa más rápida."
617
613
618
614
#: ../Doc/c-api/call.rst:300
619
615
msgid "The types of *name* and *format* were changed from ``char *``."
@@ -622,9 +618,9 @@ msgstr "Los tipos de *name* y *format* se cambiaron desde ``char *``."
622
618
#: ../Doc/c-api/call.rst:306
623
619
#, fuzzy
624
620
msgid ""
625
- "Call a callable Python object *callable*, with a variable number "
626
- "of :c:expr: `PyObject *` arguments. The arguments are provided as a variable "
627
- "number of parameters followed by *NULL*."
621
+ "Call a callable Python object *callable*, with a variable number of :c:expr: "
622
+ "`PyObject *` arguments. The arguments are provided as a variable number of "
623
+ "parameters followed by *NULL*."
628
624
msgstr ""
629
625
"Llame a un objeto de Python invocable *callable*, con un número variable de "
630
626
"argumentos :c:type:`PyObject *`. Los argumentos se proporcionan como un "
@@ -672,9 +668,9 @@ msgstr ""
672
668
673
669
#: ../Doc/c-api/call.rst:353
674
670
msgid ""
675
- "Call a callable Python object *callable*. The arguments are the same as "
676
- "for : c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this "
677
- "directly calls the vectorcall function stored in *callable*."
671
+ "Call a callable Python object *callable*. The arguments are the same as for : "
672
+ "c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this directly "
673
+ "calls the vectorcall function stored in *callable*."
678
674
msgstr ""
679
675
"Llama a un objeto de Python invocable *callable*. Los argumentos son los "
680
676
"mismos que para :c:type:`vectorcallfunc`. Si *callable* admite vectorcall_, "
@@ -711,10 +707,10 @@ msgid ""
711
707
"method is given as a Python string *name*. The object whose method is called "
712
708
"is *args[0]*, and the *args* array starting at *args[1]* represents the "
713
709
"arguments of the call. There must be at least one positional argument. "
714
- "*nargsf* is the number of positional arguments including *args[0]*, "
715
- "plus :c: macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` "
716
- "may temporarily be changed. Keyword arguments can be passed just like "
717
- "in :c:func: `PyObject_Vectorcall`."
710
+ "*nargsf* is the number of positional arguments including *args[0]*, plus :c: "
711
+ "macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` may "
712
+ "temporarily be changed. Keyword arguments can be passed just like in :c:func: "
713
+ "`PyObject_Vectorcall`."
718
714
msgstr ""
719
715
"Llama a un método usando la convención de llamada vectorcall. El nombre del "
720
716
"método se proporciona como una cadena de Python *name*. El objeto cuyo "
0 commit comments