-
Notifications
You must be signed in to change notification settings - Fork 395
/
Copy pathset.po
296 lines (268 loc) · 13 KB
/
set.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# Copyright (C) 2001-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
# Maintained by the python-doc-es workteam.
# docs-es@python.org /
# https://mail.python.org/mailman3/lists/docs-es.python.org/
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to
# get the list of volunteers
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-21 16:38-0300\n"
"PO-Revision-Date: 2022-11-10 21:17+0100\n"
"Last-Translator: Rodrigo Tobar <rtobarc@gmail.com>\n"
"Language: es\n"
"Language-Team: python-doc-es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.16.0\n"
#: ../Doc/c-api/set.rst:6
msgid "Set Objects"
msgstr "Objetos conjunto"
#: ../Doc/c-api/set.rst:15
msgid ""
"This section details the public API for :class:`set` and :class:`frozenset` "
"objects. Any functionality not listed below is best accessed using either "
"the abstract object protocol (including :c:func:`PyObject_CallMethod`, :c:"
"func:`PyObject_RichCompareBool`, :c:func:`PyObject_Hash`, :c:func:"
"`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, and :c:"
"func:`PyObject_GetIter`) or the abstract number protocol (including :c:func:"
"`PyNumber_And`, :c:func:`PyNumber_Subtract`, :c:func:`PyNumber_Or`, :c:func:"
"`PyNumber_Xor`, :c:func:`PyNumber_InPlaceAnd`, :c:func:"
"`PyNumber_InPlaceSubtract`, :c:func:`PyNumber_InPlaceOr`, and :c:func:"
"`PyNumber_InPlaceXor`)."
msgstr ""
"Esta sección detalla la API pública de los objetos :class:`set` y :class:"
"`frozenset`. Cualquier funcionalidad que no esté listada a continuación se "
"accede mejor utilizando el protocolo abstracto de objetos (incluyendo :c:"
"func:`PyObject_CallMethod`, :c:func:`PyObject_RichCompareBool`, :c:func:"
"`PyObject_Hash`, :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:"
"`PyObject_Print`, y :c:func:`PyObject_GetIter`) o el protocolo numérico "
"abstracto (incluyendo :c:func:`PyNumber_And`, :c:func:`PyNumber_Subtract`, :"
"c:func:`PyNumber_Or`, :c:func:`PyNumber_Xor`, :c:func:"
"`PyNumber_InPlaceAnd`, :c:func:`PyNumber_InPlaceSubtract`, :c:func:"
"`PyNumber_InPlaceOr`, y :c:func:`PyNumber_InPlaceXor`)."
#: ../Doc/c-api/set.rst:29
msgid ""
"This subtype of :c:type:`PyObject` is used to hold the internal data for "
"both :class:`set` and :class:`frozenset` objects. It is like a :c:type:"
"`PyDictObject` in that it is a fixed size for small sets (much like tuple "
"storage) and will point to a separate, variable sized block of memory for "
"medium and large sized sets (much like list storage). None of the fields of "
"this structure should be considered public and all are subject to change. "
"All access should be done through the documented API rather than by "
"manipulating the values in the structure."
msgstr ""
"Este subtipo de :c:type:`PyObject` se utiliza para mantener los datos "
"internos de los objetos :class:`set` y :class:`frozenset`. Es como un :c:"
"type:`PyDictObject` en el sentido de que tiene un tamaño fijo para los "
"conjuntos pequeños (muy parecido al almacenamiento de tuplas) y apuntará a "
"un bloque de memoria separado y de tamaño variable para los conjuntos de "
"tamaño medio y grande (muy parecido al almacenamiento de listas). Ninguno de "
"los campos de esta estructura debe considerarse público y todos están "
"sujetos a cambios. Todo el acceso debe hacerse a través de la API "
"documentada en lugar de manipular los valores de la estructura."
#: ../Doc/c-api/set.rst:40
msgid ""
"This is an instance of :c:type:`PyTypeObject` representing the Python :class:"
"`set` type."
msgstr ""
"Esta es una instancia de :c:type:`PyTypeObject` que representa el tipo "
"Python :class:`set`."
#: ../Doc/c-api/set.rst:46
msgid ""
"This is an instance of :c:type:`PyTypeObject` representing the Python :class:"
"`frozenset` type."
msgstr ""
"Esta es una instancia de :c:type:`PyTypeObject` que representa el tipo "
"Python :class:`frozenset`."
#: ../Doc/c-api/set.rst:49
msgid ""
"The following type check macros work on pointers to any Python object. "
"Likewise, the constructor functions work with any iterable Python object."
msgstr ""
"Los siguientes macros de comprobación de tipos funcionan en punteros a "
"cualquier objeto de Python. Del mismo modo, las funciones del constructor "
"funcionan con cualquier objeto Python iterable."
#: ../Doc/c-api/set.rst:55
msgid ""
"Return true if *p* is a :class:`set` object or an instance of a subtype. "
"This function always succeeds."
msgstr ""
"Retorna verdadero si *p* es un objeto :class:`set` o una instancia de un "
"subtipo. Esta función siempre finaliza con éxito."
#: ../Doc/c-api/set.rst:60
msgid ""
"Return true if *p* is a :class:`frozenset` object or an instance of a "
"subtype. This function always succeeds."
msgstr ""
"Retorna verdadero si *p* es un objeto :class:`frozenset` o una instancia de "
"un subtipo. Esta función siempre finaliza con éxito."
#: ../Doc/c-api/set.rst:65
msgid ""
"Return true if *p* is a :class:`set` object, a :class:`frozenset` object, or "
"an instance of a subtype. This function always succeeds."
msgstr ""
"Retorna verdadero si *p* es un objeto :class:`set`, un objeto :class:"
"`frozenset`, o una instancia de un subtipo. Esta función siempre finaliza "
"con éxito."
#: ../Doc/c-api/set.rst:70
msgid ""
"Return true if *p* is a :class:`set` object but not an instance of a "
"subtype. This function always succeeds."
msgstr ""
"Retorna verdadero si *p* es un objeto :class:`set` pero no una instancia de "
"un subtipo. Esta función siempre finaliza con éxito."
#: ../Doc/c-api/set.rst:77
msgid ""
"Return true if *p* is a :class:`set` object or a :class:`frozenset` object "
"but not an instance of a subtype. This function always succeeds."
msgstr ""
"Retorna verdadero si *p* es un objeto :class:`set` o un objeto :class:"
"`frozenset` pero no una instancia de un subtipo. Esta función siempre "
"finaliza con éxito."
#: ../Doc/c-api/set.rst:83
msgid ""
"Return true if *p* is a :class:`frozenset` object but not an instance of a "
"subtype. This function always succeeds."
msgstr ""
"Retorna verdadero si *p* es un objeto :class:`frozenset` pero no una "
"instancia de un subtipo. Esta función siempre finaliza con éxito."
#: ../Doc/c-api/set.rst:89
msgid ""
"Return a new :class:`set` containing objects returned by the *iterable*. "
"The *iterable* may be ``NULL`` to create a new empty set. Return the new "
"set on success or ``NULL`` on failure. Raise :exc:`TypeError` if *iterable* "
"is not actually iterable. The constructor is also useful for copying a set "
"(``c=set(s)``)."
msgstr ""
"Retorna un nuevo :class:`set` que contiene objetos retornados por "
"*iterable*. El *iterable* puede ser ``NULL`` para crear un nuevo conjunto "
"vacío. Retorna el nuevo conjunto en caso de éxito o ``NULL`` en caso de "
"error. Lanza :exc:`TypeError` si *iterable* no es realmente iterable. El "
"constructor también es útil para copiar un conjunto (``c=set(s)``)."
#: ../Doc/c-api/set.rst:98
msgid ""
"Return a new :class:`frozenset` containing objects returned by the "
"*iterable*. The *iterable* may be ``NULL`` to create a new empty frozenset. "
"Return the new set on success or ``NULL`` on failure. Raise :exc:"
"`TypeError` if *iterable* is not actually iterable."
msgstr ""
"Retorna un nuevo :class:`frozenset` que contiene objetos retornados por "
"*iterable*. El *iterable* puede ser ``NULL`` para crear un nuevo conjunto "
"congelado vacío. Retorna el nuevo conjunto en caso de éxito o ``NULL`` en "
"caso de error. Lanza :exc:`TypeError` si *iterable* no es realmente iterable."
#: ../Doc/c-api/set.rst:104
msgid ""
"The following functions and macros are available for instances of :class:"
"`set` or :class:`frozenset` or instances of their subtypes."
msgstr ""
"Las siguientes funciones y macros están disponibles para instancias de :"
"class:`set` o :class:`frozenset` o instancias de sus subtipos."
#: ../Doc/c-api/set.rst:112
#, fuzzy
msgid ""
"Return the length of a :class:`set` or :class:`frozenset` object. Equivalent "
"to ``len(anyset)``. Raises a :exc:`SystemError` if *anyset* is not a :class:"
"`set`, :class:`frozenset`, or an instance of a subtype."
msgstr ""
"Retorna la longitud de un objeto :class:`set` o :class:`frozenset`. "
"Equivalente a ``len(anyset)``. Lanza un :exc:`PyExc_SystemError` si *anyset* "
"no es :class:`set`, :class:`frozenset`, o una instancia de un subtipo."
#: ../Doc/c-api/set.rst:119
msgid "Macro form of :c:func:`PySet_Size` without error checking."
msgstr "Forma macro de :c:func:`PySet_Size` sin comprobación de errores."
#: ../Doc/c-api/set.rst:124
#, fuzzy
msgid ""
"Return ``1`` if found, ``0`` if not found, and ``-1`` if an error is "
"encountered. Unlike the Python :meth:`~object.__contains__` method, this "
"function does not automatically convert unhashable sets into temporary "
"frozensets. Raise a :exc:`TypeError` if the *key* is unhashable. Raise :exc:"
"`SystemError` if *anyset* is not a :class:`set`, :class:`frozenset`, or an "
"instance of a subtype."
msgstr ""
"Retorna ``1`` si se encuentra, ``0`` si no se encuentra y ``-1`` si se "
"encuentra un error. A diferencia del método Python :meth:`__contains__`, "
"esta función no convierte automáticamente conjuntos no compartibles en "
"congelados temporales. Lanza un :exc:`TypeError` si la *key* no se puede "
"compartir. Lanza :exc:`PyExc_SystemError` si *anyset* no es un :class:"
"`set`, :class:`frozenset`, o una instancia de un subtipo."
#: ../Doc/c-api/set.rst:133
msgid ""
"Add *key* to a :class:`set` instance. Also works with :class:`frozenset` "
"instances (like :c:func:`PyTuple_SetItem` it can be used to fill in the "
"values of brand new frozensets before they are exposed to other code). "
"Return ``0`` on success or ``-1`` on failure. Raise a :exc:`TypeError` if "
"the *key* is unhashable. Raise a :exc:`MemoryError` if there is no room to "
"grow. Raise a :exc:`SystemError` if *set* is not an instance of :class:"
"`set` or its subtype."
msgstr ""
"Añade *key* a una instancia :class:`set`. También funciona con instancias "
"de :class:`frozenset` (al igual que :c:func:`PyTuple_SetItem` puede usarse "
"para rellenar los valores de nuevos frozensets antes de que sean expuestos a "
"otro código). Retorna ``0`` en caso de éxito o ``-1`` en caso de fallo. "
"Lanza un error :exc:`TypeError` si la *key* no se puede intercambiar. Lanza "
"un :exc:`MemoryError` si no hay espacio para crecer. Lanza un :exc:"
"`SystemError` si *set* no es una instancia de :class:`set` o su subtipo."
#: ../Doc/c-api/set.rst:142
msgid ""
"The following functions are available for instances of :class:`set` or its "
"subtypes but not for instances of :class:`frozenset` or its subtypes."
msgstr ""
"Las siguientes funciones están disponibles para instancias de :class:`set` o "
"sus subtipos, pero no para instancias de :class:`frozenset` o sus subtipos."
#: ../Doc/c-api/set.rst:148
#, fuzzy
msgid ""
"Return ``1`` if found and removed, ``0`` if not found (no action taken), and "
"``-1`` if an error is encountered. Does not raise :exc:`KeyError` for "
"missing keys. Raise a :exc:`TypeError` if the *key* is unhashable. Unlike "
"the Python :meth:`~frozenset.discard` method, this function does not "
"automatically convert unhashable sets into temporary frozensets. Raise :exc:"
"`SystemError` if *set* is not an instance of :class:`set` or its subtype."
msgstr ""
"Retorna ``1`` si se encuentra y se elimina, ``0`` si no se encuentra (no se "
"realiza ninguna acción) y ``-1`` si se encuentra un error. No lanza :exc:"
"`KeyError` por faltar claves. Lanza un :exc:`TypeError` si la *key* no se "
"puede compartir. A diferencia del método Python :meth:`~set.discard`, esta "
"función no convierte automáticamente conjuntos no compartibles en congelados "
"temporales. Lanza :exc:`PyExc_SystemError` si *set* no es una instancia de :"
"class:`set` o su subtipo."
#: ../Doc/c-api/set.rst:158
msgid ""
"Return a new reference to an arbitrary object in the *set*, and removes the "
"object from the *set*. Return ``NULL`` on failure. Raise :exc:`KeyError` "
"if the set is empty. Raise a :exc:`SystemError` if *set* is not an instance "
"of :class:`set` or its subtype."
msgstr ""
"Retorna una nueva referencia a un objeto arbitrario en el *set* y elimina el "
"objeto del *set*. Retorna ``NULL`` en caso de falla. Lanza :exc:`KeyError` "
"si el conjunto está vacío. Lanza a :exc:`SystemError` si *set* no es una "
"instancia de :class:`set` o su subtipo."
#: ../Doc/c-api/set.rst:166
msgid ""
"Empty an existing set of all elements. Return ``0`` on success. Return "
"``-1`` and raise :exc:`SystemError` if *set* is not an instance of :class:"
"`set` or its subtype."
msgstr ""
#: ../Doc/c-api/set.rst:11
#, fuzzy
msgid "object"
msgstr "Objetos conjunto"
#: ../Doc/c-api/set.rst:11
msgid "set"
msgstr ""
#: ../Doc/c-api/set.rst:11
msgid "frozenset"
msgstr ""
#: ../Doc/c-api/set.rst:110
msgid "built-in function"
msgstr ""
#: ../Doc/c-api/set.rst:110
msgid "len"
msgstr ""