@@ -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-10-16 21:42+0200\n "
14
- "PO-Revision-Date : 2021-08-02 01:55+0200 \n "
15
- "Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail .com>\n "
14
+ "PO-Revision-Date : 2021-10-28 15:10-0500 \n "
15
+ "Last-Translator : José Luis Salgado Banda <josephLSalgado@outlook .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
+ "Plural-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.9.1\n "
23
+ "X-Generator : Poedit 3.0\n "
23
24
24
25
#: ../Doc/c-api/structures.rst:6
25
26
msgid "Common Object Structures"
@@ -118,36 +119,45 @@ msgstr "Consulte la documentación de :c:type:`PyVarObject` anteriormente."
118
119
msgid ""
119
120
"Test if the *x* object is the *y* object, the same as ``x is y`` in Python."
120
121
msgstr ""
122
+ "Prueba si el objeto *x* es el objeto *y*, lo mismo que ``x is y`` en Python."
121
123
122
124
#: ../Doc/c-api/structures.rst:74
123
125
msgid ""
124
126
"Test if an object is the ``None`` singleton, the same as ``x is None`` in "
125
127
"Python."
126
128
msgstr ""
129
+ "Prueba si un objeto es la instancia única ``None``, lo mismo que ``x is "
130
+ "None`` en Python."
127
131
128
132
#: ../Doc/c-api/structures.rst:82
129
133
msgid ""
130
134
"Test if an object is the ``True`` singleton, the same as ``x is True`` in "
131
135
"Python."
132
136
msgstr ""
137
+ "Prueba si un objeto es la instancia única ``True``, lo mismo que ``x is "
138
+ "True`` en Python."
133
139
134
140
#: ../Doc/c-api/structures.rst:90
135
141
msgid ""
136
142
"Test if an object is the ``False`` singleton, the same as ``x is False`` in "
137
143
"Python."
138
144
msgstr ""
145
+ "Prueba si un objeto es la instancia única ``False``, lo mismo que ``x is "
146
+ "False`` en Python."
139
147
140
148
#: ../Doc/c-api/structures.rst:98
141
149
msgid "Get the type of the Python object *o*."
142
- msgstr ""
150
+ msgstr "Obtiene el tipo de objeto Python *o*. "
143
151
144
152
#: ../Doc/c-api/structures.rst:100
145
153
msgid "Return a :term:`borrowed reference`."
146
- msgstr ""
154
+ msgstr "Retorna una referencia prestada (:term:`borrowed reference`). "
147
155
148
156
#: ../Doc/c-api/structures.rst:102
149
157
msgid "The :c:func:`Py_SET_TYPE` function must be used to set an object type."
150
158
msgstr ""
159
+ "Debe utilizarse la función :c:func:`Py_SET_TYPE` para establecer un tipo de "
160
+ "objeto."
151
161
152
162
#: ../Doc/c-api/structures.rst:107
153
163
msgid ""
@@ -163,25 +173,29 @@ msgstr "Establece el tipo del objeto *o* a *type*."
163
173
164
174
#: ../Doc/c-api/structures.rst:122
165
175
msgid "Get the reference count of the Python object *o*."
166
- msgstr ""
176
+ msgstr "Obtiene la cuenta de referencias del objeto Python *o*. "
167
177
168
178
#: ../Doc/c-api/structures.rst:124
169
179
msgid ""
170
180
":c:func:`Py_REFCNT()` is changed to the inline static function. Use :c:func:"
171
181
"`Py_SET_REFCNT()` to set an object reference count."
172
182
msgstr ""
183
+ ":c:func:`Py_REFCNT()` se cambia a la función estática en línea. Use :c:func:"
184
+ "`Py_SET_REFCNT()` para establecer una cuenta de referencias de objetos."
173
185
174
186
#: ../Doc/c-api/structures.rst:131
175
187
msgid "Set the object *o* reference counter to *refcnt*."
176
188
msgstr "Establece el conteo de referencia del objeto *o* a *refcnt*."
177
189
178
190
#: ../Doc/c-api/structures.rst:138
179
191
msgid "Get the size of the Python object *o*."
180
- msgstr ""
192
+ msgstr "Obtiene el tamaño del objeto Python *o*. "
181
193
182
194
#: ../Doc/c-api/structures.rst:140
183
195
msgid "The :c:func:`Py_SET_SIZE` function must be used to set an object size."
184
196
msgstr ""
197
+ "Debe utilizarse la función :c:func:`Py_SET_SIZE` para establecer un tamaño "
198
+ "de objeto."
185
199
186
200
#: ../Doc/c-api/structures.rst:145
187
201
msgid "Set the object *o* size to *size*."
@@ -414,7 +428,7 @@ msgstr ""
414
428
415
429
#: ../Doc/c-api/structures.rst:297
416
430
msgid "``METH_FASTCALL`` is now part of the stable ABI."
417
- msgstr ""
431
+ msgstr "Ahora ``METH_FASTCALL`` es parte de la ABI estable. "
418
432
419
433
#: ../Doc/c-api/structures.rst:302
420
434
msgid ""
@@ -799,13 +813,19 @@ msgid ""
799
813
"Get an attribute belonging to the object at address *obj_addr*. The "
800
814
"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error."
801
815
msgstr ""
816
+ "Obtiene un atributo que pertenece al objeto en la dirección *obj_addr*. El "
817
+ "atributo se describe por ``PyMemberDef`` *m*. Retorna ``NULL`` en caso de "
818
+ "error."
802
819
803
820
#: ../Doc/c-api/structures.rst:482
804
821
msgid ""
805
822
"Set an attribute belonging to the object at address *obj_addr* to object "
806
823
"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns "
807
824
"``0`` if successful and a negative value on failure."
808
825
msgstr ""
826
+ "Establece un atributo que pertenece al objeto en la dirección *obj_addr* al "
827
+ "objeto *o*. El atributo a establecer se describe por ``PyMemberDef`` *m*. "
828
+ "Retorna ``0`` si tiene éxito y un valor negativo si falla."
809
829
810
830
#: ../Doc/c-api/structures.rst:489
811
831
msgid ""
@@ -821,7 +841,7 @@ msgstr "nombre"
821
841
822
842
#: ../Doc/c-api/structures.rst:495
823
843
msgid "attribute name"
824
- msgstr "Nombre del atributo"
844
+ msgstr "nombre del atributo"
825
845
826
846
#: ../Doc/c-api/structures.rst:497
827
847
msgid "get"
0 commit comments