@@ -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 : 2022-10-25 19:47+0200\n "
14
- "PO-Revision-Date : 2020-07-22 13:24-0300 \n "
14
+ "PO-Revision-Date : 2023-04-03 15:39-0600 \n "
15
15
"Last-Translator : \n "
16
- "Language : es\n "
17
16
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17
+ "Language : es \n "
19
18
"MIME-Version : 1.0\n "
20
19
"Content-Type : text/plain; charset=utf-8\n "
21
20
"Content-Transfer-Encoding : 8bit\n "
21
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
22
22
"Generated-By : Babel 2.10.3\n "
23
+ "X-Generator : Poedit 3.2.2\n "
23
24
24
25
#: ../Doc/library/bisect.rst:2
25
26
msgid ":mod:`bisect` --- Array bisection algorithm"
@@ -84,12 +85,17 @@ msgid ""
84
85
"extract a comparison key from each element in the array. To support "
85
86
"searching complex records, the key function is not applied to the *x* value."
86
87
msgstr ""
88
+ "*key* especifica una :term:`función clave` de un argumento que es usada para "
89
+ "extraer una clave de comparación de cada elemento en el arreglo. La función "
90
+ "clave no se aplica a *x* para facilitar la búsqueda de registros complejos."
87
91
88
92
#: ../Doc/library/bisect.rst:41 ../Doc/library/bisect.rst:62
89
93
msgid ""
90
94
"If *key* is ``None``, the elements are compared directly with no intervening "
91
95
"function call."
92
96
msgstr ""
97
+ "Si *key* es ``None``, los elementos son comparados directamente sin "
98
+ "intervención de una función."
93
99
94
100
#: ../Doc/library/bisect.rst:44 ../Doc/library/bisect.rst:65
95
101
#: ../Doc/library/bisect.rst:83 ../Doc/library/bisect.rst:103
@@ -133,6 +139,9 @@ msgid ""
133
139
"To support inserting records in a table, the *key* function (if any) is "
134
140
"applied to *x* for the search step but not for the insertion step."
135
141
msgstr ""
142
+ "Para mantener la inserción de registros en una tabla, la función *key* (en "
143
+ "caso de existir) se aplica a *x* en el paso de búsqueda pero no en el paso "
144
+ "de inserción."
136
145
137
146
#: ../Doc/library/bisect.rst:80 ../Doc/library/bisect.rst:100
138
147
msgid ""
@@ -208,15 +217,14 @@ msgstr ""
208
217
"sección de ejemplos a continuación)."
209
218
210
219
#: ../Doc/library/bisect.rst:129
211
- #, fuzzy
212
220
msgid ""
213
221
"`Sorted Collections <https://grantjenks.com/docs/sortedcollections/>`_ is a "
214
222
"high performance module that uses *bisect* to managed sorted collections of "
215
223
"data."
216
224
msgstr ""
217
- "`Sorted Collections <http ://www. grantjenks.com/docs/sortedcollections/>`_ es "
218
- "un módulo de alto rendimiento que utiliza *bisect* para gestionar "
219
- "colecciones de datos ordenadas."
225
+ "`Sorted Collections <https ://grantjenks.com/docs/sortedcollections/>`_ es un "
226
+ "módulo de alto rendimiento que utiliza *bisect* para gestionar colecciones "
227
+ "de datos ordenadas."
220
228
221
229
#: ../Doc/library/bisect.rst:133
222
230
msgid ""
@@ -229,8 +237,8 @@ msgstr ""
229
237
"El `SortedCollection recipe <https://code.activestate.com/recipes/577197-"
230
238
"sortedcollection/>`_ usa bisect para construir una clase de colección con "
231
239
"todas las funciones con métodos de búsqueda sencillos y soporte para una "
232
- "función clave. Las teclas se calculan previamente para ahorrar llamadas "
233
- "innecesarias a la función de la tecla durante las búsquedas."
240
+ "función clave. Las claves se calculan previamente para ahorrar llamadas "
241
+ "innecesarias a la función clave durante las búsquedas."
234
242
235
243
#: ../Doc/library/bisect.rst:141
236
244
msgid "Searching Sorted Lists"
@@ -270,15 +278,18 @@ msgid ""
270
278
"tuples. The *key* argument can serve to extract the field used for ordering "
271
279
"records in a table::"
272
280
msgstr ""
281
+ "Las funciones :func:`bisect` e :func:`insort` también funcionan con listas "
282
+ "de tuplas. El argumento *key* puede usarse para extraer el campo usado para "
283
+ "ordenar registros en una tabla::"
273
284
274
285
#: ../Doc/library/bisect.rst:235
275
- #, fuzzy
276
286
msgid ""
277
287
"If the key function is expensive, it is possible to avoid repeated function "
278
288
"calls by searching a list of precomputed keys to find the index of a record::"
279
289
msgstr ""
280
- "Una técnica para evitar llamadas repetidas a una función de tecla es buscar "
281
- "en una lista de teclas precalculadas para encontrar el índice de un registro:"
290
+ "Para evitar llamadas repetidas a la función clave, cuando ésta usa muchos "
291
+ "recursos, se puede buscar en una lista de claves previamente calculadas para "
292
+ "encontrar el índice de un registro::"
282
293
283
294
#~ msgid ""
284
295
#~ "*key* specifies a :term:`key function` of one argument that is used to "
0 commit comments