6
6
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
7
7
# get the list of volunteers
8
8
#
9
- #, fuzzy
10
9
msgid ""
11
10
msgstr ""
12
11
"Project-Id-Version : Python 3.8\n "
13
12
"Report-Msgid-Bugs-To : \n "
14
13
"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 "
17
15
"Language-Team : python-doc-es\n "
18
16
"MIME-Version : 1.0\n "
19
- "Content-Type : text/plain; charset=utf -8\n "
17
+ "Content-Type : text/plain; charset=UTF -8\n "
20
18
"Content-Transfer-Encoding : 8bit\n "
21
19
"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 "
22
24
23
25
#: ../Doc/c-api/code.rst:8
24
26
msgid "Code Objects"
25
- msgstr ""
27
+ msgstr "Objetos Código "
26
28
27
29
#: ../Doc/c-api/code.rst:12
28
30
msgid ""
29
31
"Code objects are a low-level detail of the CPython implementation. Each one "
30
32
"represents a chunk of executable code that hasn't yet been bound into a "
31
33
"function."
32
34
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."
33
38
34
39
#: ../Doc/c-api/code.rst:18
35
40
msgid ""
36
41
"The C structure of the objects used to describe code objects. The fields of "
37
42
"this type are subject to change at any time."
38
43
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."
39
46
40
47
#: ../Doc/c-api/code.rst:24
41
48
msgid ""
42
49
"This is an instance of :c:type:`PyTypeObject` representing the Python :class:"
43
50
"`code` type."
44
51
msgstr ""
52
+ "Esta es una instancia de :c:type:`PyTypeObject` que representa el tipo "
53
+ "Python :class:`code`."
45
54
46
55
#: ../Doc/c-api/code.rst:30
47
56
msgid "Return true if *co* is a :class:`code` object."
48
- msgstr ""
57
+ msgstr "Retorna verdadero si *co* es un objeto :class:`code`. "
49
58
50
59
#: ../Doc/c-api/code.rst:34
51
60
msgid "Return the number of free variables in *co*."
52
- msgstr ""
61
+ msgstr "Retorna el número de variables libres en *co*. "
53
62
54
63
#: ../Doc/c-api/code.rst:38
55
64
msgid ""
@@ -58,16 +67,26 @@ msgid ""
58
67
"directly can bind you to a precise Python version since the definition of "
59
68
"the bytecode changes often."
60
69
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."
61
74
62
75
#: ../Doc/c-api/code.rst:45
63
76
msgid ""
64
77
"Similar to :c:func:`PyCode_New`, but with an extra \" posonlyargcount\" for "
65
78
"positional-only arguments."
66
79
msgstr ""
80
+ "Similar a :c:func:`PyCode_New`, pero con un \" *posonlyargcount*\" adicional "
81
+ "para argumentos solo posicionales."
67
82
68
83
#: ../Doc/c-api/code.rst:51
69
84
msgid ""
70
85
"Return a new empty code object with the specified filename, function name, "
71
86
"and first line number. It is illegal to :func:`exec` or :func:`eval` the "
72
87
"resulting code object."
73
88
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