@@ -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:48 +0100\n "
14
+ "PO-Revision-Date : 2021-10-13 07:32 +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 "
@@ -95,7 +95,6 @@ msgid "The Future for Python 2.x"
95
95
msgstr "El futuro de Python 2.x"
96
96
97
97
#: ../Doc/whatsnew/2.7.rst:82
98
- #, fuzzy
99
98
msgid ""
100
99
"Python 2.7 is the last major release in the 2.x series, as the Python "
101
100
"maintainers have shifted the focus of their new feature development efforts "
@@ -1062,7 +1061,6 @@ msgstr ""
1062
1061
"redondear x a 17 dígitos decimales."
1063
1062
1064
1063
#: ../Doc/whatsnew/2.7.rst:749
1065
- #, fuzzy
1066
1064
msgid ""
1067
1065
"The rounding library responsible for this improvement works on Windows and "
1068
1066
"on Unix platforms using the gcc, icc, or suncc compilers. There may be a "
@@ -1080,7 +1078,6 @@ msgstr ""
1080
1078
"uso y ``legacy`` si no lo está."
1081
1079
1082
1080
#: ../Doc/whatsnew/2.7.rst:757
1083
- #, fuzzy
1084
1081
msgid ""
1085
1082
"Implemented by Eric Smith and Mark Dickinson, using David Gay's :file:`dtoa."
1086
1083
"c` library; :issue:`7117`."
@@ -1089,7 +1086,6 @@ msgstr ""
1089
1086
"David Gay's :file:`dtoa.c`; :issue:`7117`."
1090
1087
1091
1088
#: ../Doc/whatsnew/2.7.rst:760
1092
- #, fuzzy
1093
1089
msgid ""
1094
1090
"Conversions from long integers and regular integers to floating point now "
1095
1091
"round differently, returning the floating-point number closest to the "
@@ -1106,7 +1102,6 @@ msgstr ""
1106
1102
"ejemplo, Python 2.6 calculaba lo siguiente::"
1107
1103
1108
1104
#: ../Doc/whatsnew/2.7.rst:773
1109
- #, fuzzy
1110
1105
msgid ""
1111
1106
"Python 2.7's floating-point result is larger, but much closer to the true "
1112
1107
"value::"
@@ -1115,12 +1110,10 @@ msgstr ""
1115
1110
"del valor verdadero::"
1116
1111
1117
1112
#: ../Doc/whatsnew/2.7.rst:782
1118
- #, fuzzy
1119
1113
msgid "(Implemented by Mark Dickinson; :issue:`3166`.)"
1120
1114
msgstr "(Implementado por Mark Dickinson; :issue:`3166`.)"
1121
1115
1122
1116
#: ../Doc/whatsnew/2.7.rst:784
1123
- #, fuzzy
1124
1117
msgid ""
1125
1118
"Integer division is also more accurate in its rounding behaviours. (Also "
1126
1119
"implemented by Mark Dickinson; :issue:`1811`.)"
@@ -1129,7 +1122,6 @@ msgstr ""
1129
1122
"redondeo. (También implementado por Mark Dickinson; :issue:`1811`.)"
1130
1123
1131
1124
#: ../Doc/whatsnew/2.7.rst:787
1132
- #, fuzzy
1133
1125
msgid ""
1134
1126
"Implicit coercion for complex numbers has been removed; the interpreter will "
1135
1127
"no longer ever attempt to call a :meth:`__coerce__` method on complex "
@@ -1141,18 +1133,17 @@ msgstr ""
1141
1133
"`5211`.)"
1142
1134
1143
1135
#: ../Doc/whatsnew/2.7.rst:791
1144
- #, fuzzy , python-format
1136
+ #, python-format
1145
1137
msgid ""
1146
1138
"The :meth:`str.format` method now supports automatic numbering of the "
1147
1139
"replacement fields. This makes using :meth:`str.format` more closely "
1148
1140
"resemble using ``%s`` formatting::"
1149
1141
msgstr ""
1150
1142
"El método :meth:`str.format` soporta ahora la numeración automática de los "
1151
1143
"campos de sustitución. Esto hace que el uso de :meth:`str.format` se "
1152
- "asemeje más al uso del formato ``%s``::"
1144
+ "asemeje más al uso del formateo ``%s``::"
1153
1145
1154
1146
#: ../Doc/whatsnew/2.7.rst:800
1155
- #, fuzzy
1156
1147
msgid ""
1157
1148
"The auto-numbering takes the fields from left to right, so the first ``{...}"
1158
1149
"`` specifier will use the first argument to :meth:`str.format`, the next "
@@ -1170,7 +1161,6 @@ msgstr ""
1170
1161
"el segundo ejemplo anterior. (Contribución de Eric Smith; :issue:`5237`.)"
1171
1162
1172
1163
#: ../Doc/whatsnew/2.7.rst:807
1173
- #, fuzzy
1174
1164
msgid ""
1175
1165
"Complex numbers now correctly support usage with :func:`format`, and default "
1176
1166
"to being right-aligned. Specifying a precision or comma-separation applies "
@@ -1186,7 +1176,6 @@ msgstr ""
1186
1176
"(Contribución de Eric Smith; :issue:`1588` y :issue:`7988`)"
1187
1177
1188
1178
#: ../Doc/whatsnew/2.7.rst:814
1189
- #, fuzzy
1190
1179
msgid ""
1191
1180
"The 'F' format code now always formats its output using uppercase "
1192
1181
"characters, so it will now produce 'INF' and 'NAN'. (Contributed by Eric "
@@ -1197,7 +1186,6 @@ msgstr ""
1197
1186
"(Contribución de Eric Smith; :issue:`3382`.)"
1198
1187
1199
1188
#: ../Doc/whatsnew/2.7.rst:818
1200
- #, fuzzy
1201
1189
msgid ""
1202
1190
"A low-level change: the :meth:`object.__format__` method now triggers a :exc:"
1203
1191
"`PendingDeprecationWarning` if it's passed a format string, because the :"
@@ -1219,7 +1207,6 @@ msgstr ""
1219
1207
"específica del objeto. (Arreglado por Eric Smith; :issue:`7994`.)"
1220
1208
1221
1209
#: ../Doc/whatsnew/2.7.rst:828
1222
- #, fuzzy
1223
1210
msgid ""
1224
1211
"The :func:`int` and :func:`long` types gained a ``bit_length`` method that "
1225
1212
"returns the number of bits necessary to represent its argument in binary::"
@@ -1229,12 +1216,10 @@ msgstr ""
1229
1216
"binario::"
1230
1217
1231
1218
#: ../Doc/whatsnew/2.7.rst:843
1232
- #, fuzzy
1233
1219
msgid "(Contributed by Fredrik Johansson and Victor Stinner; :issue:`3439`.)"
1234
1220
msgstr "(Contribución de Fredrik Johansson y Victor Stinner; :issue:`3439`.)"
1235
1221
1236
1222
#: ../Doc/whatsnew/2.7.rst:845
1237
- #, fuzzy
1238
1223
msgid ""
1239
1224
"The :keyword:`import` statement will no longer try an absolute import if a "
1240
1225
"relative import (e.g. ``from .os import sep``) fails. This fixes a bug, but "
@@ -1248,7 +1233,6 @@ msgstr ""
1248
1233
"accidente. (Arreglado por Meador Inge; :issue:`7902`.)"
1249
1234
1250
1235
#: ../Doc/whatsnew/2.7.rst:851
1251
- #, fuzzy
1252
1236
msgid ""
1253
1237
"It's now possible for a subclass of the built-in :class:`unicode` type to "
1254
1238
"override the :meth:`__unicode__` method. (Implemented by Victor Stinner; :"
@@ -1259,7 +1243,6 @@ msgstr ""
1259
1243
"issue:`1583863`.)"
1260
1244
1261
1245
#: ../Doc/whatsnew/2.7.rst:855
1262
- #, fuzzy
1263
1246
msgid ""
1264
1247
"The :class:`bytearray` type's :meth:`~bytearray.translate` method now "
1265
1248
"accepts ``None`` as its first argument. (Fixed by Georg Brandl; :issue:"
@@ -1270,7 +1253,6 @@ msgstr ""
1270
1253
"`4759`.)"
1271
1254
1272
1255
#: ../Doc/whatsnew/2.7.rst:861
1273
- #, fuzzy
1274
1256
msgid ""
1275
1257
"When using ``@classmethod`` and ``@staticmethod`` to wrap methods as class "
1276
1258
"or static methods, the wrapper object now exposes the wrapped function as "
@@ -1283,7 +1265,6 @@ msgstr ""
1283
1265
"d'Arc, después de una sugerencia de George Sakkis; :issue:`5982`.)"
1284
1266
1285
1267
#: ../Doc/whatsnew/2.7.rst:867 ../Doc/whatsnew/2.7.rst:2462
1286
- #, fuzzy
1287
1268
msgid ""
1288
1269
"When a restricted set of attributes were set using ``__slots__``, deleting "
1289
1270
"an unset attribute would not raise :exc:`AttributeError` as you would "
@@ -1295,7 +1276,6 @@ msgstr ""
1295
1276
"issue:`7604`)"
1296
1277
1297
1278
#: ../Doc/whatsnew/2.7.rst:871
1298
- #, fuzzy
1299
1279
msgid ""
1300
1280
"Two new encodings are now supported: \" cp720\" , used primarily for Arabic "
1301
1281
"text; and \" cp858\" , a variant of CP 850 that adds the euro symbol. (CP720 "
@@ -1309,7 +1289,6 @@ msgstr ""
1309
1289
"en :issue:`8016`)"
1310
1290
1311
1291
#: ../Doc/whatsnew/2.7.rst:877
1312
- #, fuzzy
1313
1292
msgid ""
1314
1293
"The :class:`file` object will now set the :attr:`filename` attribute on the :"
1315
1294
"exc:`IOError` exception when trying to open a directory on POSIX platforms "
@@ -1325,7 +1304,6 @@ msgstr ""
1325
1304
"del error (corregido por Stefan Krah; :issue:`5677`)."
1326
1305
1327
1306
#: ../Doc/whatsnew/2.7.rst:884
1328
- #, fuzzy
1329
1307
msgid ""
1330
1308
"The Python tokenizer now translates line endings itself, so the :func:"
1331
1309
"`compile` built-in function now accepts code using any line-ending "
@@ -1338,7 +1316,6 @@ msgstr ""
1338
1316
"el código termine en una nueva línea."
1339
1317
1340
1318
#: ../Doc/whatsnew/2.7.rst:889
1341
- #, fuzzy
1342
1319
msgid ""
1343
1320
"Extra parentheses in function definitions are illegal in Python 3.x, meaning "
1344
1321
"that you get a syntax error from ``def f((x)): pass``. In Python3-warning "
@@ -1352,7 +1329,6 @@ msgstr ""
1352
1329
"issue:'7362'.)"
1353
1330
1354
1331
#: ../Doc/whatsnew/2.7.rst:894
1355
- #, fuzzy
1356
1332
msgid ""
1357
1333
"It's now possible to create weak references to old-style class objects. New-"
1358
1334
"style classes were always weak-referenceable. (Fixed by Antoine Pitrou; :"
@@ -1363,7 +1339,6 @@ msgstr ""
1363
1339
"(Corregido por Antoine Pitrou; :issue:`8268`.)"
1364
1340
1365
1341
#: ../Doc/whatsnew/2.7.rst:898
1366
- #, fuzzy
1367
1342
msgid ""
1368
1343
"When a module object is garbage-collected, the module's dictionary is now "
1369
1344
"only cleared if no one else is holding a reference to the dictionary (:issue:"
@@ -1373,12 +1348,10 @@ msgstr ""
1373
1348
"se borra si nadie más tiene una referencia al diccionario (:issue:`7140`)."
1374
1349
1375
1350
#: ../Doc/whatsnew/2.7.rst:907
1376
- #, fuzzy
1377
1351
msgid "Interpreter Changes"
1378
1352
msgstr "Cambios en el intérprete"
1379
1353
1380
1354
#: ../Doc/whatsnew/2.7.rst:909
1381
- #, fuzzy
1382
1355
msgid ""
1383
1356
"A new environment variable, :envvar:`PYTHONWARNINGS`, allows controlling "
1384
1357
"warnings. It should be set to a string containing warning settings, "
@@ -1392,7 +1365,6 @@ msgstr ""
1392
1365
"Curtin; :issue:`7301`.)"
1393
1366
1394
1367
#: ../Doc/whatsnew/2.7.rst:915
1395
- #, fuzzy
1396
1368
msgid ""
1397
1369
"For example, the following setting will print warnings every time they "
1398
1370
"occur, but turn warnings from the :mod:`Cookie` module into an error. (The "
@@ -1409,12 +1381,10 @@ msgid "Optimizations"
1409
1381
msgstr "Optimizaciones"
1410
1382
1411
1383
#: ../Doc/whatsnew/2.7.rst:930
1412
- #, fuzzy
1413
1384
msgid "Several performance enhancements have been added:"
1414
1385
msgstr "Se han añadido varias mejoras de rendimiento:"
1415
1386
1416
1387
#: ../Doc/whatsnew/2.7.rst:932
1417
- #, fuzzy
1418
1388
msgid ""
1419
1389
"A new opcode was added to perform the initial setup for :keyword:`with` "
1420
1390
"statements, looking up the :meth:`__enter__` and :meth:`__exit__` methods. "
@@ -1425,7 +1395,7 @@ msgstr ""
1425
1395
"`__enter__` y :meth:`__exit__`. (Contribución de Benjamin Peterson.)"
1426
1396
1427
1397
#: ../Doc/whatsnew/2.7.rst:936
1428
- #, fuzzy , python-format
1398
+ #, python-format
1429
1399
msgid ""
1430
1400
"The garbage collector now performs better for one common usage pattern: when "
1431
1401
"many objects are being allocated without deallocating any of them. This "
@@ -1444,12 +1414,10 @@ msgstr ""
1444
1414
"objetos en el montón. La nueva lógica sólo realiza una pasada completa de "
1445
1415
"recogida de basura cuando la generación intermedia ha sido recogida 10 veces "
1446
1416
"y cuando el número de objetos supervivientes de la generación intermedia "
1447
- "supera el 10% of del número de objetos de la generación más antigua. "
1448
- "(Sugerido por Martin von Löwis e implementado por Antoine Pitrou; :issue:"
1449
- "`4074`.)"
1417
+ "supera el 10% del número de objetos de la generación más antigua. (Sugerido "
1418
+ "por Martin von Löwis e implementado por Antoine Pitrou; :issue:`4074`.)"
1450
1419
1451
1420
#: ../Doc/whatsnew/2.7.rst:947
1452
- #, fuzzy
1453
1421
msgid ""
1454
1422
"The garbage collector tries to avoid tracking simple containers which can't "
1455
1423
"be part of a cycle. In Python 2.7, this is now true for tuples and dicts "
@@ -1468,7 +1436,6 @@ msgstr ""
1468
1436
"recorrer el recolector. (Contribución de Antoine Pitrou; :issue:`4688`.)"
1469
1437
1470
1438
#: ../Doc/whatsnew/2.7.rst:956
1471
- #, fuzzy
1472
1439
msgid ""
1473
1440
"Long integers are now stored internally either in base 2**15 or in base "
1474
1441
"2**30, the base being determined at build time. Previously, they were "
@@ -1490,7 +1457,6 @@ msgstr ""
1490
1457
"big-digits` que puede utilizarse para anular este valor por defecto."
1491
1458
1492
1459
#: ../Doc/whatsnew/2.7.rst:965
1493
- #, fuzzy
1494
1460
msgid ""
1495
1461
"Apart from the performance improvements this change should be invisible to "
1496
1462
"end users, with one exception: for testing and debugging purposes there's a "
@@ -1505,12 +1471,10 @@ msgstr ""
1505
1471
"bytes del tipo C utilizado para almacenar cada dígito::"
1506
1472
1507
1473
#: ../Doc/whatsnew/2.7.rst:976
1508
- #, fuzzy
1509
1474
msgid "(Contributed by Mark Dickinson; :issue:`4258`.)"
1510
1475
msgstr "(Contribución de Mark Dickinson; :issue:`4258`.)"
1511
1476
1512
1477
#: ../Doc/whatsnew/2.7.rst:978
1513
- #, fuzzy
1514
1478
msgid ""
1515
1479
"Another set of changes made long objects a few bytes smaller: 2 bytes "
1516
1480
"smaller on 32-bit systems and 6 bytes on 64-bit. (Contributed by Mark "
@@ -1521,7 +1485,7 @@ msgstr ""
1521
1485
"bits. (Contribución de Mark Dickinson; :issue:`5260`.)"
1522
1486
1523
1487
#: ../Doc/whatsnew/2.7.rst:982
1524
- #, fuzzy , python-format
1488
+ #, python-format
1525
1489
msgid ""
1526
1490
"The division algorithm for long integers has been made faster by tightening "
1527
1491
"the inner loop, doing shifts instead of multiplications, and fixing an "
@@ -1533,14 +1497,13 @@ msgstr ""
1533
1497
"El algoritmo de división de enteros largos se ha hecho más rápido ajustando "
1534
1498
"el bucle interno, haciendo desplazamientos en lugar de multiplicaciones, y "
1535
1499
"arreglando una iteración extra innecesaria. Varias pruebas de referencia "
1536
- "muestran un aumento de velocidad de entre el 50% a y el 150% f en las "
1500
+ "muestran un aumento de velocidad de entre el 50% a y el 150% en las "
1537
1501
"divisiones de enteros largos y en las operaciones de módulo. (Contribución "
1538
1502
"de Mark Dickinson; :issue:`5512`). Las operaciones a nivel de bit también "
1539
1503
"son significativamente más rápidas (parche inicial de Gregory Smith; :issue:"
1540
1504
"`1087418`)."
1541
1505
1542
1506
#: ../Doc/whatsnew/2.7.rst:991
1543
- #, fuzzy
1544
1507
msgid ""
1545
1508
"The implementation of ``%`` checks for the left-side operand being a Python "
1546
1509
"string and special-cases it; this results in a 1--3% performance increase "
@@ -1554,7 +1517,6 @@ msgstr ""
1554
1517
"(Implementado por Collin Winter; :issue:`5176`.)"
1555
1518
1556
1519
#: ../Doc/whatsnew/2.7.rst:997
1557
- #, fuzzy
1558
1520
msgid ""
1559
1521
"List comprehensions with an ``if`` condition are compiled into faster "
1560
1522
"bytecode. (Patch by Antoine Pitrou, back-ported to 2.7 by Jeffrey Yasskin; :"
@@ -1565,7 +1527,6 @@ msgstr ""
1565
1527
"por Jeffrey Yasskin; :issue:`4715`)"
1566
1528
1567
1529
#: ../Doc/whatsnew/2.7.rst:1001
1568
- #, fuzzy
1569
1530
msgid ""
1570
1531
"Converting an integer or long integer to a decimal string was made faster by "
1571
1532
"special-casing base 10 instead of using a generalized conversion function "
@@ -1577,7 +1538,6 @@ msgstr ""
1577
1538
"Gawain Bolton; :issue:`6713`.)"
1578
1539
1579
1540
#: ../Doc/whatsnew/2.7.rst:1006
1580
- #, fuzzy
1581
1541
msgid ""
1582
1542
"The :meth:`split`, :meth:`replace`, :meth:`rindex`, :meth:`rpartition`, and :"
1583
1543
"meth:`rsplit` methods of string-like types (strings, Unicode strings, and :"
@@ -1593,19 +1553,17 @@ msgstr ""
1593
1553
"`7462` y :issue:`7622`)"
1594
1554
1595
1555
#: ../Doc/whatsnew/2.7.rst:1013
1596
- #, fuzzy
1597
1556
msgid ""
1598
1557
"The :mod:`pickle` and :mod:`cPickle` modules now automatically intern the "
1599
1558
"strings used for attribute names, reducing memory usage of the objects "
1600
1559
"resulting from unpickling. (Contributed by Jake McGuire; :issue:`5084`.)"
1601
1560
msgstr ""
1602
1561
"Los módulos :mod:`pickle` y :mod:`cPickle` ahora internan automáticamente "
1603
1562
"las cadenas usadas para los nombres de los atributos, reduciendo el uso de "
1604
- "memoria de los objetos resultantes del unpickling . (Contribución de Jake "
1605
- "McGuire; :issue:`5084`.)"
1563
+ "memoria de los objetos resultantes del desempaquetamiento . (Contribución de "
1564
+ "Jake McGuire; :issue:`5084`.)"
1606
1565
1607
1566
#: ../Doc/whatsnew/2.7.rst:1018
1608
- #, fuzzy
1609
1567
msgid ""
1610
1568
"The :mod:`cPickle` module now special-cases dictionaries, nearly halving the "
1611
1569
"time required to pickle them. (Contributed by Collin Winter; :issue:`5670`.)"
@@ -2906,7 +2864,6 @@ msgstr ""
2906
2864
"`8024`)."
2907
2865
2908
2866
#: ../Doc/whatsnew/2.7.rst:1648 ../Doc/whatsnew/2.7.rst:2508
2909
- #, fuzzy
2910
2867
msgid ""
2911
2868
"The :mod:`urlparse` module's :func:`~urlparse.urlsplit` now handles unknown "
2912
2869
"URL schemes in a fashion compliant with :rfc:`3986`: if the URL is of the "
@@ -2920,8 +2877,7 @@ msgstr ""
2920
2877
"URL es de la forma ``\" <something>://...\" ``, el texto que precede a ``://`` "
2921
2878
"se trata como el esquema, incluso si es un esquema inventado que el módulo "
2922
2879
"no conoce. Este cambio puede romper el código que funcionaba con el antiguo "
2923
- "comportamiento. Por ejemplo, Python 2.6.4 o 2.5 devolverá lo siguiente:</"
2924
- "something>"
2880
+ "comportamiento. Por ejemplo, Python 2.6.4 o 2.5 devolverá lo siguiente:"
2925
2881
2926
2882
#: ../Doc/whatsnew/2.7.rst:1663 ../Doc/whatsnew/2.7.rst:2523
2927
2883
#, fuzzy
0 commit comments