@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2020-05-05 12:54+0200\n "
14
- "PO-Revision-Date : 2020-08-05 05:55 -0300\n "
14
+ "PO-Revision-Date : 2020-08-10 07:54 -0300\n "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
@@ -47,8 +47,8 @@ msgstr ""
47
47
#: ../Doc/faq/extending.rst:22
48
48
msgid "Most intermediate or advanced Python books will also cover this topic."
49
49
msgstr ""
50
- "La mayoría de los libros intermedios o avanzados de Python también tratan este "
51
- "tema."
50
+ "La mayoría de los libros intermedios o avanzados de Python también tratan "
51
+ "este tema."
52
52
53
53
#: ../Doc/faq/extending.rst:26
54
54
msgid "Can I create my own functions in C++?"
@@ -87,10 +87,10 @@ msgid ""
87
87
"Cython and Pyrex make it possible to write an extension without having to "
88
88
"learn Python's C API."
89
89
msgstr ""
90
- "`Cython <http://cython.org>`_ y su relativo `* Pyrex* <https://www.cosc."
90
+ "`Cython <http://cython.org>`_ y su relativo `Pyrex <https://www.cosc."
91
91
"canterbury.ac.nz/greg.ewing/python/Pyrex/>`_ son compiladores que aceptan "
92
92
"una forma de Python ligeramente modificada y generan el código C "
93
- "correspondiente. Cython y Pyrex hacen posible escribir una extensión sin "
93
+ "correspondiente. Cython y * Pyrex* hacen posible escribir una extensión sin "
94
94
"tener que aprender la API de Python C."
95
95
96
96
#: ../Doc/faq/extending.rst:50
@@ -103,8 +103,8 @@ msgid ""
103
103
"html>`_, or `Weave <https://github.com/scipy/weave>`_ are also alternatives "
104
104
"for wrapping C++ libraries."
105
105
msgstr ""
106
- "Si necesitas hacer una interfaz a alguna biblioteca C o C++ que no posee "
107
- "aún extensión Python, puedes intentar empaquetar los tipo de datos de la "
106
+ "Si necesitas hacer una interfaz a alguna biblioteca C o C++ que no posee aún "
107
+ "extensión Python, puedes intentar empaquetar los tipo de datos de la "
108
108
"biblioteca con una herramienta como `SWIG <http://www.swig.org>`_. `SIP "
109
109
"<https://riverbankcomputing.com/software/sip/intro>`__, `CXX <http://cxx."
110
110
"sourceforge.net/>`_ `Boost <http://www.boost.org/libs/python/doc/index."
@@ -143,8 +143,8 @@ msgid ""
143
143
"and returns its value."
144
144
msgstr ""
145
145
"Llama a la función :c:func:`PyRun_String` de la pregunta anterior con el "
146
- "símbolo de comienzo (*start*) :c:data:`Py_eval_input`; analiza una expresión, "
147
- "evalúa y retorna su valor."
146
+ "símbolo de comienzo (*start*) :c:data:`Py_eval_input`; analiza una "
147
+ "expresión, evalúa y retorna su valor."
148
148
149
149
#: ../Doc/faq/extending.rst:80
150
150
msgid "How do I extract C values from a Python object?"
@@ -159,8 +159,8 @@ msgid ""
159
159
msgstr ""
160
160
"Eso depende del tipo de objeto. Si es una tupla, :c:func:`PyTuple_Size` "
161
161
"retorna su tamaño, y :c:func:`PyTuple_GetItem` retorna el ítem del índice "
162
- "especificado. Las listas tienen funciones similares, :c:func:`PyListSize` and :c: "
163
- "func:`PyList_GetItem`."
162
+ "especificado. Las listas tienen funciones similares, :c:func:`PyListSize` "
163
+ "and :c: func:`PyList_GetItem`."
164
164
165
165
#: ../Doc/faq/extending.rst:87
166
166
msgid ""
@@ -193,10 +193,10 @@ msgid ""
193
193
"as many other useful protocols such as numbers (:c:func:`PyNumber_Index` et "
194
194
"al.) and mappings in the PyMapping APIs."
195
195
msgstr ""
196
- "También hay una API de alto nivel para objetos Python que son provistos por la "
197
- "supuestamente llamada interfaz 'abstracta' -- lee ``Include/abstract.h`` para "
198
- "mas detalles. Permite realizar una interfaz con cualquier tipo de secuencia "
199
- "Python usando llamadas como :c:func:`PySequence_Length`, :c:func:"
196
+ "También hay una API de alto nivel para objetos Python que son provistos por "
197
+ "la supuestamente llamada interfaz 'abstracta' -- lee ``Include/abstract.h`` "
198
+ "para mas detalles. Permite realizar una interfaz con cualquier tipo de "
199
+ "secuencia Python usando llamadas como :c:func:`PySequence_Length`, :c:func:"
200
200
"`PySequence_GetItem`, etc. así como otros protocolos útiles como números (:c:"
201
201
"func:`PyNumber_Index` et al.) y mapeos en las *PyMapping APIs*."
202
202
@@ -226,15 +226,14 @@ msgstr ""
226
226
"func:`Py_BuildValue`, y los valores de argumento ::"
227
227
228
228
#: ../Doc/faq/extending.rst:121
229
- #, fuzzy
230
229
msgid ""
231
230
"This works for any object that has methods -- whether built-in or user-"
232
231
"defined. You are responsible for eventually :c:func:`Py_DECREF`\\ 'ing the "
233
232
"return value."
234
233
msgstr ""
235
234
"Esto funciona para cualquier objeto que tenga métodos -- sean estos "
236
- "integrados o definidos por el usuario. Serás responsable por el eventual :c: "
237
- "func:`Py_DECREF`\\ valor de retorno."
235
+ "incorporados o definidos por el usuario. Eres responsable si eventualmente "
236
+ "usas :c: func:`Py_DECREF` en el valor de retorno.\" "
238
237
239
238
#: ../Doc/faq/extending.rst:124
240
239
msgid ""
@@ -251,7 +250,7 @@ msgid ""
251
250
"format, and to call a function with one argument, surround the argument in "
252
251
"parentheses, e.g. \" (i)\" ."
253
252
msgstr ""
254
- "Note que debido a :c:func:`PyObject_CallObject` *siempre* queriendo una tupla "
253
+ "Note que debido a :c:func:`PyObject_CallObject` *siempre* necesita una tupla "
255
254
"para la lista de argumento, para llamar una función sin argumentos, deberás "
256
255
"pasar \" ()\" para el formato, y para llamar a una función con un solo "
257
256
"argumento, encierra el argumento entre paréntesis, por ejemplo \" (i)\" ."
@@ -507,9 +506,9 @@ msgid ""
507
506
"extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``)."
508
507
msgstr ""
509
508
"Para cargar dinámicamente módulos de extensión g++, debes recompilar Python, "
510
- "hacer un nuevo link usando g++ (cambia LINKCC en el Python Modules Makefile) "
511
- "y enlaza *link* tu extensión usando g++ (por ejemplo `g++ -shared -o "
512
- "mymodule.so mymodule.o``)."
509
+ "hacer un nuevo * link* usando g++ (cambia LINKCC en el Python Modules "
510
+ "Makefile) y enlaza *link* tu extensión usando g++ (por ejemplo `g++ -shared -"
511
+ "o mymodule.so mymodule.o``)."
513
512
514
513
#: ../Doc/faq/extending.rst:440
515
514
msgid ""
0 commit comments