@@ -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 : 2020-05-10 01:57 +0200\n "
14
+ "PO-Revision-Date : 2021-10-30 18:20 +0200\n "
15
15
"Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.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/refcounting.rst:8
25
26
msgid "Reference Counting"
@@ -35,23 +36,25 @@ msgstr ""
35
36
36
37
#: ../Doc/c-api/refcounting.rst:16
37
38
msgid "Increment the reference count for object *o*."
38
- msgstr ""
39
+ msgstr "Incrementar el recuento de referencia para el objeto *o*. "
39
40
40
41
#: ../Doc/c-api/refcounting.rst:18
41
42
msgid ""
42
43
"This function is usually used to convert a :term:`borrowed reference` to a :"
43
44
"term:`strong reference` in-place. The :c:func:`Py_NewRef` function can be "
44
45
"used to create a new :term:`strong reference`."
45
46
msgstr ""
47
+ "Esta función se usa generalmente para convertir un :term:`borrowed "
48
+ "reference` en un :term:`strong reference` en su lugar. La función :c:func:"
49
+ "`Py_NewRef` se puede utilizar para crear un nuevo :term:`strong reference`."
46
50
47
51
#: ../Doc/c-api/refcounting.rst:22
48
- #, fuzzy
49
52
msgid ""
50
53
"The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, "
51
54
"use :c:func:`Py_XINCREF`."
52
55
msgstr ""
53
- "Incrementa el conteo de referencia para el objeto *o*. El objeto no debe ser "
54
- "``NULL``; si no está seguro de que no sea ``NULL``, use :c:func:`Py_XINCREF`."
56
+ "El objeto no debe ser ``NULL``; si no está seguro de que no sea ``NULL``, "
57
+ "use :c:func:`Py_XINCREF`."
55
58
56
59
#: ../Doc/c-api/refcounting.rst:28
57
60
msgid ""
@@ -63,70 +66,79 @@ msgstr ""
63
66
64
67
#: ../Doc/c-api/refcounting.rst:31
65
68
msgid "See also :c:func:`Py_XNewRef`."
66
- msgstr ""
69
+ msgstr "Ver también :c:func:`Py_XNewRef`. "
67
70
68
71
#: ../Doc/c-api/refcounting.rst:36
69
72
msgid ""
70
73
"Create a new :term:`strong reference` to an object: increment the reference "
71
74
"count of the object *o* and return the object *o*."
72
75
msgstr ""
76
+ "Crea un nuevo :term:`strong reference` a un objeto: incrementa el recuento "
77
+ "de referencias del objeto *o* y retorna el objeto *o*."
73
78
74
79
#: ../Doc/c-api/refcounting.rst:39
75
80
msgid ""
76
81
"When the :term:`strong reference` is no longer needed, :c:func:`Py_DECREF` "
77
82
"should be called on it to decrement the object reference count."
78
83
msgstr ""
84
+ "Cuando el :term:`strong reference` ya no sea necesario :c:func:`Py_DECREF` "
85
+ "debe ser llamado para disminuir el recuento de referencias del objeto."
79
86
80
87
#: ../Doc/c-api/refcounting.rst:42
81
88
msgid ""
82
89
"The object *o* must not be ``NULL``; use :c:func:`Py_XNewRef` if *o* can be "
83
90
"``NULL``."
84
91
msgstr ""
92
+ "El objecto *o* no debe ser ``NULL``; use :c:func:`Py_XNewRef` si *o* puede "
93
+ "ser ``NULL``."
85
94
86
95
#: ../Doc/c-api/refcounting.rst:45
87
96
msgid "For example::"
88
- msgstr ""
97
+ msgstr "Por ejemplo:: "
89
98
90
99
#: ../Doc/c-api/refcounting.rst:50
91
100
msgid "can be written as::"
92
- msgstr ""
101
+ msgstr "puede ser escrito como:: "
93
102
94
103
#: ../Doc/c-api/refcounting.rst:54
95
104
msgid "See also :c:func:`Py_INCREF`."
96
- msgstr ""
105
+ msgstr "Ver también :c:func:`Py_INCREF`. "
97
106
98
107
#: ../Doc/c-api/refcounting.rst:61
99
108
msgid "Similar to :c:func:`Py_NewRef`, but the object *o* can be NULL."
100
- msgstr ""
109
+ msgstr "Similar a :c:func:`Py_NewRef`, pero el objecto *o* puede ser NULL. "
101
110
102
111
#: ../Doc/c-api/refcounting.rst:63
103
112
msgid "If the object *o* is ``NULL``, the function just returns ``NULL``."
104
- msgstr ""
113
+ msgstr "Si el objeto *o* es ``NULL``, la función solo retorna ``NULL``. "
105
114
106
115
#: ../Doc/c-api/refcounting.rst:70
107
116
msgid "Decrement the reference count for object *o*."
108
- msgstr ""
117
+ msgstr "Decrementa el conteo de referencia para el objeto *o*. "
109
118
110
119
#: ../Doc/c-api/refcounting.rst:72
111
120
msgid ""
112
121
"If the reference count reaches zero, the object's type's deallocation "
113
122
"function (which must not be ``NULL``) is invoked."
114
123
msgstr ""
124
+ "Si el recuento de referencias llega a cero, se invoca la función de "
125
+ "desasignación del tipo de objeto (que no debe ser ``NULL``)."
115
126
116
127
#: ../Doc/c-api/refcounting.rst:75
117
128
msgid ""
118
129
"This function is usually used to delete a :term:`strong reference` before "
119
130
"exiting its scope."
120
131
msgstr ""
132
+ "Esta función se usa generalmente para eliminar un :term:`strong reference` "
133
+ "antes de salir de su alcance."
121
134
122
135
#: ../Doc/c-api/refcounting.rst:78
123
- #, fuzzy
124
136
msgid ""
125
137
"The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, "
126
138
"use :c:func:`Py_XDECREF`."
127
139
msgstr ""
128
- "Incrementa el conteo de referencia para el objeto *o*. El objeto no debe ser "
129
- "``NULL``; si no está seguro de que no sea ``NULL``, use :c:func:`Py_XINCREF`."
140
+ "El objeto no debe ser ``NULL``; si no está seguro de que no sea ``NULL``, "
141
+ "use :c:func:`Py_XINCREF`."
130
142
131
143
#: ../Doc/c-api/refcounting.rst:83
132
144
msgid ""
0 commit comments