@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2020-05-05 12:54+0200\n "
14
- "PO-Revision-Date : 2021-08-08 10:31 +0100\n "
14
+ "PO-Revision-Date : 2021-09-26 10:19 +0100\n "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
@@ -88,7 +88,6 @@ msgstr ""
88
88
"ellas es una modificación amplia de la semántica de Python."
89
89
90
90
#: ../Doc/whatsnew/2.5.rst:34
91
- #, fuzzy
92
91
msgid ""
93
92
"As well as the language and library additions, other improvements and "
94
93
"bugfixes were made throughout the source tree. A search through the SVN "
@@ -102,7 +101,6 @@ msgstr ""
102
101
"que ambas cifras estén subestimadas)"
103
102
104
103
#: ../Doc/whatsnew/2.5.rst:39
105
- #, fuzzy
106
104
msgid ""
107
105
"This article doesn't try to be a complete specification of the new features; "
108
106
"instead changes are briefly introduced using helpful examples. For full "
@@ -119,7 +117,6 @@ msgstr ""
119
117
"consulta el PEP de una nueva característica en particular."
120
118
121
119
#: ../Doc/whatsnew/2.5.rst:45
122
- #, fuzzy
123
120
msgid ""
124
121
"Comments, suggestions, and error reports for this document are welcome; "
125
122
"please e-mail them to the author or open a bug in the Python bug tracker."
@@ -129,12 +126,10 @@ msgstr ""
129
126
"abra un error en el rastreador de errores de Python."
130
127
131
128
#: ../Doc/whatsnew/2.5.rst:54
132
- #, fuzzy
133
129
msgid "PEP 308: Conditional Expressions"
134
130
msgstr "PEP 308: Expresiones condicionales"
135
131
136
132
#: ../Doc/whatsnew/2.5.rst:56
137
- #, fuzzy
138
133
msgid ""
139
134
"For a long time, people have been requesting a way to write conditional "
140
135
"expressions, which are expressions that return value A or value B depending "
@@ -149,7 +144,6 @@ msgstr ""
149
144
"que tiene el mismo efecto que la siguiente::"
150
145
151
146
#: ../Doc/whatsnew/2.5.rst:66
152
- #, fuzzy
153
147
msgid ""
154
148
"There have been endless tedious discussions of syntax on both python-dev and "
155
149
"comp.lang.python. A vote was even held that found the majority of voters "
@@ -165,12 +159,10 @@ msgstr ""
165
159
"false_v``, ``if cond then true_v else false_v``, y otras 16 variaciones."
166
160
167
161
#: ../Doc/whatsnew/2.5.rst:72
168
- #, fuzzy
169
162
msgid "Guido van Rossum eventually chose a surprising syntax::"
170
163
msgstr "Guido van Rossum eligió finalmente una sintaxis sorprendente::"
171
164
172
165
#: ../Doc/whatsnew/2.5.rst:76
173
- #, fuzzy
174
166
msgid ""
175
167
"Evaluation is still lazy as in existing Boolean expressions, so the order of "
176
168
"evaluation jumps around a bit. The *condition* expression in the middle is "
@@ -185,7 +177,6 @@ msgstr ""
185
177
"*valor_falso* sólo se evalúa cuando la condición es falsa."
186
178
187
179
#: ../Doc/whatsnew/2.5.rst:82
188
- #, fuzzy
189
180
msgid ""
190
181
"This syntax may seem strange and backwards; why does the condition go in the "
191
182
"*middle* of the expression, and not in the front as in C's ``c ? x : y``? "
@@ -206,7 +197,6 @@ msgstr ""
206
197
"La sintaxis condicional hace que este patrón sea un poco más obvio::"
207
198
208
199
#: ../Doc/whatsnew/2.5.rst:92
209
- #, fuzzy
210
200
msgid ""
211
201
"I read the above statement as meaning \" here *contents* is usually assigned "
212
202
"a value of ``doc+'\\ n'``; sometimes *doc* is empty, in which special case "
@@ -219,7 +209,6 @@ msgstr ""
219
209
"condicionales muy a menudo donde no hay un caso común y no común claro."
220
210
221
211
#: ../Doc/whatsnew/2.5.rst:97
222
- #, fuzzy
223
212
msgid ""
224
213
"There was some discussion of whether the language should require surrounding "
225
214
"conditional expressions with parentheses. The decision was made to *not* "
@@ -233,7 +222,6 @@ msgstr ""
233
222
"declaraciones::"
234
223
235
224
#: ../Doc/whatsnew/2.5.rst:108
236
- #, fuzzy
237
225
msgid ""
238
226
"In the first version, I think a reader's eye might group the statement into "
239
227
"'level = 1', 'if logging', 'else 0', and think that the condition decides "
@@ -248,7 +236,6 @@ msgstr ""
248
236
"siempre y que se está eligiendo entre dos valores."
249
237
250
238
#: ../Doc/whatsnew/2.5.rst:114
251
- #, fuzzy
252
239
msgid ""
253
240
"Another reason for including the brackets: a few odd combinations of list "
254
241
"comprehensions and lambdas could look like incorrect conditional "
@@ -261,12 +248,10 @@ msgstr ""
261
248
"alrededor de sus expresiones condicionales, no se encontrará con este caso."
262
249
263
250
#: ../Doc/whatsnew/2.5.rst:123
264
- #, fuzzy
265
251
msgid ":pep:`308` - Conditional Expressions"
266
252
msgstr ":pep:`308` - Expresiones condicionales"
267
253
268
254
#: ../Doc/whatsnew/2.5.rst:123
269
- #, fuzzy
270
255
msgid ""
271
256
"PEP written by Guido van Rossum and Raymond D. Hettinger; implemented by "
272
257
"Thomas Wouters."
@@ -275,12 +260,10 @@ msgstr ""
275
260
"Thomas Wouters."
276
261
277
262
#: ../Doc/whatsnew/2.5.rst:132
278
- #, fuzzy
279
263
msgid "PEP 309: Partial Function Application"
280
- msgstr "PEP 309: Aplicación de funciones parciales "
264
+ msgstr "PEP 309: Aplicación parcial de funciones"
281
265
282
266
#: ../Doc/whatsnew/2.5.rst:134
283
- #, fuzzy
284
267
msgid ""
285
268
"The :mod:`functools` module is intended to contain tools for functional-"
286
269
"style programming."
@@ -289,7 +272,6 @@ msgstr ""
289
272
"programación de estilo funcional."
290
273
291
274
#: ../Doc/whatsnew/2.5.rst:137
292
- #, fuzzy
293
275
msgid ""
294
276
"One useful tool in this module is the :func:`partial` function. For programs "
295
277
"written in a functional style, you'll sometimes want to construct variants "
@@ -306,7 +288,6 @@ msgstr ""
306
288
"llama \" aplicación parcial de funciones\" ."
307
289
308
290
#: ../Doc/whatsnew/2.5.rst:144
309
- #, fuzzy
310
291
msgid ""
311
292
":func:`partial` takes the arguments ``(function, arg1, arg2, ... "
312
293
"kwarg1=value1, kwarg2=value2)``. The resulting object is callable, so you "
@@ -317,12 +298,10 @@ msgstr ""
317
298
"que puedes llamarlo para invocar la *función* con los argumentos rellenados."
318
299
319
300
#: ../Doc/whatsnew/2.5.rst:148
320
- #, fuzzy
321
301
msgid "Here's a small but realistic example::"
322
302
msgstr "He aquí un pequeño pero realista ejemplo::"
323
303
324
304
#: ../Doc/whatsnew/2.5.rst:160
325
- #, fuzzy
326
305
msgid ""
327
306
"Here's another example, from a program that uses PyGTK. Here a context-"
328
307
"sensitive pop-up menu is being constructed dynamically. The callback "
@@ -336,7 +315,6 @@ msgstr ""
336
315
"argumento ::"
337
316
338
317
#: ../Doc/whatsnew/2.5.rst:173
339
- #, fuzzy
340
318
msgid ""
341
319
"Another function in the :mod:`functools` module is the "
342
320
"``update_wrapper(wrapper, wrapped)`` function that helps you write well-"
@@ -352,7 +330,6 @@ msgstr ""
352
330
"escribir::"
353
331
354
332
#: ../Doc/whatsnew/2.5.rst:186
355
- #, fuzzy
356
333
msgid ""
357
334
":func:`wraps` is a decorator that can be used inside your own decorators to "
358
335
"copy the wrapped function's information. An alternate version of the "
@@ -363,12 +340,10 @@ msgstr ""
363
340
"alternativa del ejemplo anterior sería::"
364
341
365
342
#: ../Doc/whatsnew/2.5.rst:201
366
- #, fuzzy
367
343
msgid ":pep:`309` - Partial Function Application"
368
- msgstr ":pep:`309` - Aplicación de funciones parciales "
344
+ msgstr ":pep:`309` - Aplicación parcial de funciones"
369
345
370
346
#: ../Doc/whatsnew/2.5.rst:201
371
- #, fuzzy
372
347
msgid ""
373
348
"PEP proposed and written by Peter Harris; implemented by Hye-Shik Chang and "
374
349
"Nick Coghlan, with adaptations by Raymond Hettinger."
0 commit comments