Skip to content

Commit 30f7c00

Browse files
authored
Merge pull request #176 from cmaureir/traduccion-code
2 parents d136d34 + c24c233 commit 30f7c00

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

c-api/code.po

+26-7
Original file line numberDiff line numberDiff line change
@@ -6,50 +6,59 @@
66
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
15-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"PO-Revision-Date: 2020-05-09 15:55+0200\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"Generated-By: Babel 2.8.0\n"
20+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
21+
"Last-Translator: \n"
22+
"Language: es\n"
23+
"X-Generator: Poedit 2.3\n"
2224

2325
#: ../Doc/c-api/code.rst:8
2426
msgid "Code Objects"
25-
msgstr ""
27+
msgstr "Objetos Código"
2628

2729
#: ../Doc/c-api/code.rst:12
2830
msgid ""
2931
"Code objects are a low-level detail of the CPython implementation. Each one "
3032
"represents a chunk of executable code that hasn't yet been bound into a "
3133
"function."
3234
msgstr ""
35+
"Los objetos código son un detalle de bajo nivel de la implementación de "
36+
"CPython. Cada uno representa un fragmento de código ejecutable que aún no se "
37+
"ha vinculado a una función."
3338

3439
#: ../Doc/c-api/code.rst:18
3540
msgid ""
3641
"The C structure of the objects used to describe code objects. The fields of "
3742
"this type are subject to change at any time."
3843
msgstr ""
44+
"La estructura en C de los objetos utilizados para describir objetos código. "
45+
"Los campos de este tipo están sujetos a cambios en cualquier momento."
3946

4047
#: ../Doc/c-api/code.rst:24
4148
msgid ""
4249
"This is an instance of :c:type:`PyTypeObject` representing the Python :class:"
4350
"`code` type."
4451
msgstr ""
52+
"Esta es una instancia de :c:type:`PyTypeObject` que representa el tipo "
53+
"Python :class:`code`."
4554

4655
#: ../Doc/c-api/code.rst:30
4756
msgid "Return true if *co* is a :class:`code` object."
48-
msgstr ""
57+
msgstr "Retorna verdadero si *co* es un objeto :class:`code`."
4958

5059
#: ../Doc/c-api/code.rst:34
5160
msgid "Return the number of free variables in *co*."
52-
msgstr ""
61+
msgstr "Retorna el número de variables libres en *co*."
5362

5463
#: ../Doc/c-api/code.rst:38
5564
msgid ""
@@ -58,16 +67,26 @@ msgid ""
5867
"directly can bind you to a precise Python version since the definition of "
5968
"the bytecode changes often."
6069
msgstr ""
70+
"Retorna un nuevo objeto de código. Si necesita un objeto de código ficticio "
71+
"para crear un marco (*frame*), use :c:func:`PyCode_NewEmpty` en su lugar. "
72+
"Llamando :c:func:`PyCode_New` directamente puede enlazarlo a una versión "
73+
"precisa de Python ya que la definición del código de bytes cambia a menudo."
6174

6275
#: ../Doc/c-api/code.rst:45
6376
msgid ""
6477
"Similar to :c:func:`PyCode_New`, but with an extra \"posonlyargcount\" for "
6578
"positional-only arguments."
6679
msgstr ""
80+
"Similar a :c:func:`PyCode_New`, pero con un \"*posonlyargcount*\" adicional "
81+
"para argumentos solo posicionales."
6782

6883
#: ../Doc/c-api/code.rst:51
6984
msgid ""
7085
"Return a new empty code object with the specified filename, function name, "
7186
"and first line number. It is illegal to :func:`exec` or :func:`eval` the "
7287
"resulting code object."
7388
msgstr ""
89+
"Retorna un nuevo objeto de código vacío con el nombre de archivo "
90+
"especificado, el nombre de la función y el número de la primera línea. Es "
91+
"ilegal utilizar :func:`exec` o :func:`eval` en el objeto de código "
92+
"resultante."

0 commit comments

Comments
 (0)