Skip to content

Commit 432ab78

Browse files
author
Claudia
committed
removal of fuzzies and corrections
1 parent 89739f7 commit 432ab78

File tree

1 file changed

+11
-55
lines changed

1 file changed

+11
-55
lines changed

whatsnew/2.7.po

+11-55
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"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"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,7 +95,6 @@ msgid "The Future for Python 2.x"
9595
msgstr "El futuro de Python 2.x"
9696

9797
#: ../Doc/whatsnew/2.7.rst:82
98-
#, fuzzy
9998
msgid ""
10099
"Python 2.7 is the last major release in the 2.x series, as the Python "
101100
"maintainers have shifted the focus of their new feature development efforts "
@@ -1062,7 +1061,6 @@ msgstr ""
10621061
"redondear x a 17 dígitos decimales."
10631062

10641063
#: ../Doc/whatsnew/2.7.rst:749
1065-
#, fuzzy
10661064
msgid ""
10671065
"The rounding library responsible for this improvement works on Windows and "
10681066
"on Unix platforms using the gcc, icc, or suncc compilers. There may be a "
@@ -1080,7 +1078,6 @@ msgstr ""
10801078
"uso y ``legacy`` si no lo está."
10811079

10821080
#: ../Doc/whatsnew/2.7.rst:757
1083-
#, fuzzy
10841081
msgid ""
10851082
"Implemented by Eric Smith and Mark Dickinson, using David Gay's :file:`dtoa."
10861083
"c` library; :issue:`7117`."
@@ -1089,7 +1086,6 @@ msgstr ""
10891086
"David Gay's :file:`dtoa.c`; :issue:`7117`."
10901087

10911088
#: ../Doc/whatsnew/2.7.rst:760
1092-
#, fuzzy
10931089
msgid ""
10941090
"Conversions from long integers and regular integers to floating point now "
10951091
"round differently, returning the floating-point number closest to the "
@@ -1106,7 +1102,6 @@ msgstr ""
11061102
"ejemplo, Python 2.6 calculaba lo siguiente::"
11071103

11081104
#: ../Doc/whatsnew/2.7.rst:773
1109-
#, fuzzy
11101105
msgid ""
11111106
"Python 2.7's floating-point result is larger, but much closer to the true "
11121107
"value::"
@@ -1115,12 +1110,10 @@ msgstr ""
11151110
"del valor verdadero::"
11161111

11171112
#: ../Doc/whatsnew/2.7.rst:782
1118-
#, fuzzy
11191113
msgid "(Implemented by Mark Dickinson; :issue:`3166`.)"
11201114
msgstr "(Implementado por Mark Dickinson; :issue:`3166`.)"
11211115

11221116
#: ../Doc/whatsnew/2.7.rst:784
1123-
#, fuzzy
11241117
msgid ""
11251118
"Integer division is also more accurate in its rounding behaviours. (Also "
11261119
"implemented by Mark Dickinson; :issue:`1811`.)"
@@ -1129,7 +1122,6 @@ msgstr ""
11291122
"redondeo. (También implementado por Mark Dickinson; :issue:`1811`.)"
11301123

11311124
#: ../Doc/whatsnew/2.7.rst:787
1132-
#, fuzzy
11331125
msgid ""
11341126
"Implicit coercion for complex numbers has been removed; the interpreter will "
11351127
"no longer ever attempt to call a :meth:`__coerce__` method on complex "
@@ -1141,18 +1133,17 @@ msgstr ""
11411133
"`5211`.)"
11421134

11431135
#: ../Doc/whatsnew/2.7.rst:791
1144-
#, fuzzy, python-format
1136+
#, python-format
11451137
msgid ""
11461138
"The :meth:`str.format` method now supports automatic numbering of the "
11471139
"replacement fields. This makes using :meth:`str.format` more closely "
11481140
"resemble using ``%s`` formatting::"
11491141
msgstr ""
11501142
"El método :meth:`str.format` soporta ahora la numeración automática de los "
11511143
"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``::"
11531145

11541146
#: ../Doc/whatsnew/2.7.rst:800
1155-
#, fuzzy
11561147
msgid ""
11571148
"The auto-numbering takes the fields from left to right, so the first ``{...}"
11581149
"`` specifier will use the first argument to :meth:`str.format`, the next "
@@ -1170,7 +1161,6 @@ msgstr ""
11701161
"el segundo ejemplo anterior. (Contribución de Eric Smith; :issue:`5237`.)"
11711162

11721163
#: ../Doc/whatsnew/2.7.rst:807
1173-
#, fuzzy
11741164
msgid ""
11751165
"Complex numbers now correctly support usage with :func:`format`, and default "
11761166
"to being right-aligned. Specifying a precision or comma-separation applies "
@@ -1186,7 +1176,6 @@ msgstr ""
11861176
"(Contribución de Eric Smith; :issue:`1588` y :issue:`7988`)"
11871177

11881178
#: ../Doc/whatsnew/2.7.rst:814
1189-
#, fuzzy
11901179
msgid ""
11911180
"The 'F' format code now always formats its output using uppercase "
11921181
"characters, so it will now produce 'INF' and 'NAN'. (Contributed by Eric "
@@ -1197,7 +1186,6 @@ msgstr ""
11971186
"(Contribución de Eric Smith; :issue:`3382`.)"
11981187

11991188
#: ../Doc/whatsnew/2.7.rst:818
1200-
#, fuzzy
12011189
msgid ""
12021190
"A low-level change: the :meth:`object.__format__` method now triggers a :exc:"
12031191
"`PendingDeprecationWarning` if it's passed a format string, because the :"
@@ -1219,7 +1207,6 @@ msgstr ""
12191207
"específica del objeto. (Arreglado por Eric Smith; :issue:`7994`.)"
12201208

12211209
#: ../Doc/whatsnew/2.7.rst:828
1222-
#, fuzzy
12231210
msgid ""
12241211
"The :func:`int` and :func:`long` types gained a ``bit_length`` method that "
12251212
"returns the number of bits necessary to represent its argument in binary::"
@@ -1229,12 +1216,10 @@ msgstr ""
12291216
"binario::"
12301217

12311218
#: ../Doc/whatsnew/2.7.rst:843
1232-
#, fuzzy
12331219
msgid "(Contributed by Fredrik Johansson and Victor Stinner; :issue:`3439`.)"
12341220
msgstr "(Contribución de Fredrik Johansson y Victor Stinner; :issue:`3439`.)"
12351221

12361222
#: ../Doc/whatsnew/2.7.rst:845
1237-
#, fuzzy
12381223
msgid ""
12391224
"The :keyword:`import` statement will no longer try an absolute import if a "
12401225
"relative import (e.g. ``from .os import sep``) fails. This fixes a bug, but "
@@ -1248,7 +1233,6 @@ msgstr ""
12481233
"accidente. (Arreglado por Meador Inge; :issue:`7902`.)"
12491234

12501235
#: ../Doc/whatsnew/2.7.rst:851
1251-
#, fuzzy
12521236
msgid ""
12531237
"It's now possible for a subclass of the built-in :class:`unicode` type to "
12541238
"override the :meth:`__unicode__` method. (Implemented by Victor Stinner; :"
@@ -1259,7 +1243,6 @@ msgstr ""
12591243
"issue:`1583863`.)"
12601244

12611245
#: ../Doc/whatsnew/2.7.rst:855
1262-
#, fuzzy
12631246
msgid ""
12641247
"The :class:`bytearray` type's :meth:`~bytearray.translate` method now "
12651248
"accepts ``None`` as its first argument. (Fixed by Georg Brandl; :issue:"
@@ -1270,7 +1253,6 @@ msgstr ""
12701253
"`4759`.)"
12711254

12721255
#: ../Doc/whatsnew/2.7.rst:861
1273-
#, fuzzy
12741256
msgid ""
12751257
"When using ``@classmethod`` and ``@staticmethod`` to wrap methods as class "
12761258
"or static methods, the wrapper object now exposes the wrapped function as "
@@ -1283,7 +1265,6 @@ msgstr ""
12831265
"d'Arc, después de una sugerencia de George Sakkis; :issue:`5982`.)"
12841266

12851267
#: ../Doc/whatsnew/2.7.rst:867 ../Doc/whatsnew/2.7.rst:2462
1286-
#, fuzzy
12871268
msgid ""
12881269
"When a restricted set of attributes were set using ``__slots__``, deleting "
12891270
"an unset attribute would not raise :exc:`AttributeError` as you would "
@@ -1295,7 +1276,6 @@ msgstr ""
12951276
"issue:`7604`)"
12961277

12971278
#: ../Doc/whatsnew/2.7.rst:871
1298-
#, fuzzy
12991279
msgid ""
13001280
"Two new encodings are now supported: \"cp720\", used primarily for Arabic "
13011281
"text; and \"cp858\", a variant of CP 850 that adds the euro symbol. (CP720 "
@@ -1309,7 +1289,6 @@ msgstr ""
13091289
"en :issue:`8016`)"
13101290

13111291
#: ../Doc/whatsnew/2.7.rst:877
1312-
#, fuzzy
13131292
msgid ""
13141293
"The :class:`file` object will now set the :attr:`filename` attribute on the :"
13151294
"exc:`IOError` exception when trying to open a directory on POSIX platforms "
@@ -1325,7 +1304,6 @@ msgstr ""
13251304
"del error (corregido por Stefan Krah; :issue:`5677`)."
13261305

13271306
#: ../Doc/whatsnew/2.7.rst:884
1328-
#, fuzzy
13291307
msgid ""
13301308
"The Python tokenizer now translates line endings itself, so the :func:"
13311309
"`compile` built-in function now accepts code using any line-ending "
@@ -1338,7 +1316,6 @@ msgstr ""
13381316
"el código termine en una nueva línea."
13391317

13401318
#: ../Doc/whatsnew/2.7.rst:889
1341-
#, fuzzy
13421319
msgid ""
13431320
"Extra parentheses in function definitions are illegal in Python 3.x, meaning "
13441321
"that you get a syntax error from ``def f((x)): pass``. In Python3-warning "
@@ -1352,7 +1329,6 @@ msgstr ""
13521329
"issue:'7362'.)"
13531330

13541331
#: ../Doc/whatsnew/2.7.rst:894
1355-
#, fuzzy
13561332
msgid ""
13571333
"It's now possible to create weak references to old-style class objects. New-"
13581334
"style classes were always weak-referenceable. (Fixed by Antoine Pitrou; :"
@@ -1363,7 +1339,6 @@ msgstr ""
13631339
"(Corregido por Antoine Pitrou; :issue:`8268`.)"
13641340

13651341
#: ../Doc/whatsnew/2.7.rst:898
1366-
#, fuzzy
13671342
msgid ""
13681343
"When a module object is garbage-collected, the module's dictionary is now "
13691344
"only cleared if no one else is holding a reference to the dictionary (:issue:"
@@ -1373,12 +1348,10 @@ msgstr ""
13731348
"se borra si nadie más tiene una referencia al diccionario (:issue:`7140`)."
13741349

13751350
#: ../Doc/whatsnew/2.7.rst:907
1376-
#, fuzzy
13771351
msgid "Interpreter Changes"
13781352
msgstr "Cambios en el intérprete"
13791353

13801354
#: ../Doc/whatsnew/2.7.rst:909
1381-
#, fuzzy
13821355
msgid ""
13831356
"A new environment variable, :envvar:`PYTHONWARNINGS`, allows controlling "
13841357
"warnings. It should be set to a string containing warning settings, "
@@ -1392,7 +1365,6 @@ msgstr ""
13921365
"Curtin; :issue:`7301`.)"
13931366

13941367
#: ../Doc/whatsnew/2.7.rst:915
1395-
#, fuzzy
13961368
msgid ""
13971369
"For example, the following setting will print warnings every time they "
13981370
"occur, but turn warnings from the :mod:`Cookie` module into an error. (The "
@@ -1409,12 +1381,10 @@ msgid "Optimizations"
14091381
msgstr "Optimizaciones"
14101382

14111383
#: ../Doc/whatsnew/2.7.rst:930
1412-
#, fuzzy
14131384
msgid "Several performance enhancements have been added:"
14141385
msgstr "Se han añadido varias mejoras de rendimiento:"
14151386

14161387
#: ../Doc/whatsnew/2.7.rst:932
1417-
#, fuzzy
14181388
msgid ""
14191389
"A new opcode was added to perform the initial setup for :keyword:`with` "
14201390
"statements, looking up the :meth:`__enter__` and :meth:`__exit__` methods. "
@@ -1425,7 +1395,7 @@ msgstr ""
14251395
"`__enter__` y :meth:`__exit__`. (Contribución de Benjamin Peterson.)"
14261396

14271397
#: ../Doc/whatsnew/2.7.rst:936
1428-
#, fuzzy, python-format
1398+
#, python-format
14291399
msgid ""
14301400
"The garbage collector now performs better for one common usage pattern: when "
14311401
"many objects are being allocated without deallocating any of them. This "
@@ -1444,12 +1414,10 @@ msgstr ""
14441414
"objetos en el montón. La nueva lógica sólo realiza una pasada completa de "
14451415
"recogida de basura cuando la generación intermedia ha sido recogida 10 veces "
14461416
"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`.)"
14501419

14511420
#: ../Doc/whatsnew/2.7.rst:947
1452-
#, fuzzy
14531421
msgid ""
14541422
"The garbage collector tries to avoid tracking simple containers which can't "
14551423
"be part of a cycle. In Python 2.7, this is now true for tuples and dicts "
@@ -1468,7 +1436,6 @@ msgstr ""
14681436
"recorrer el recolector. (Contribución de Antoine Pitrou; :issue:`4688`.)"
14691437

14701438
#: ../Doc/whatsnew/2.7.rst:956
1471-
#, fuzzy
14721439
msgid ""
14731440
"Long integers are now stored internally either in base 2**15 or in base "
14741441
"2**30, the base being determined at build time. Previously, they were "
@@ -1490,7 +1457,6 @@ msgstr ""
14901457
"big-digits` que puede utilizarse para anular este valor por defecto."
14911458

14921459
#: ../Doc/whatsnew/2.7.rst:965
1493-
#, fuzzy
14941460
msgid ""
14951461
"Apart from the performance improvements this change should be invisible to "
14961462
"end users, with one exception: for testing and debugging purposes there's a "
@@ -1505,12 +1471,10 @@ msgstr ""
15051471
"bytes del tipo C utilizado para almacenar cada dígito::"
15061472

15071473
#: ../Doc/whatsnew/2.7.rst:976
1508-
#, fuzzy
15091474
msgid "(Contributed by Mark Dickinson; :issue:`4258`.)"
15101475
msgstr "(Contribución de Mark Dickinson; :issue:`4258`.)"
15111476

15121477
#: ../Doc/whatsnew/2.7.rst:978
1513-
#, fuzzy
15141478
msgid ""
15151479
"Another set of changes made long objects a few bytes smaller: 2 bytes "
15161480
"smaller on 32-bit systems and 6 bytes on 64-bit. (Contributed by Mark "
@@ -1521,7 +1485,7 @@ msgstr ""
15211485
"bits. (Contribución de Mark Dickinson; :issue:`5260`.)"
15221486

15231487
#: ../Doc/whatsnew/2.7.rst:982
1524-
#, fuzzy, python-format
1488+
#, python-format
15251489
msgid ""
15261490
"The division algorithm for long integers has been made faster by tightening "
15271491
"the inner loop, doing shifts instead of multiplications, and fixing an "
@@ -1533,14 +1497,13 @@ msgstr ""
15331497
"El algoritmo de división de enteros largos se ha hecho más rápido ajustando "
15341498
"el bucle interno, haciendo desplazamientos en lugar de multiplicaciones, y "
15351499
"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 "
15371501
"divisiones de enteros largos y en las operaciones de módulo. (Contribución "
15381502
"de Mark Dickinson; :issue:`5512`). Las operaciones a nivel de bit también "
15391503
"son significativamente más rápidas (parche inicial de Gregory Smith; :issue:"
15401504
"`1087418`)."
15411505

15421506
#: ../Doc/whatsnew/2.7.rst:991
1543-
#, fuzzy
15441507
msgid ""
15451508
"The implementation of ``%`` checks for the left-side operand being a Python "
15461509
"string and special-cases it; this results in a 1--3% performance increase "
@@ -1554,7 +1517,6 @@ msgstr ""
15541517
"(Implementado por Collin Winter; :issue:`5176`.)"
15551518

15561519
#: ../Doc/whatsnew/2.7.rst:997
1557-
#, fuzzy
15581520
msgid ""
15591521
"List comprehensions with an ``if`` condition are compiled into faster "
15601522
"bytecode. (Patch by Antoine Pitrou, back-ported to 2.7 by Jeffrey Yasskin; :"
@@ -1565,7 +1527,6 @@ msgstr ""
15651527
"por Jeffrey Yasskin; :issue:`4715`)"
15661528

15671529
#: ../Doc/whatsnew/2.7.rst:1001
1568-
#, fuzzy
15691530
msgid ""
15701531
"Converting an integer or long integer to a decimal string was made faster by "
15711532
"special-casing base 10 instead of using a generalized conversion function "
@@ -1577,7 +1538,6 @@ msgstr ""
15771538
"Gawain Bolton; :issue:`6713`.)"
15781539

15791540
#: ../Doc/whatsnew/2.7.rst:1006
1580-
#, fuzzy
15811541
msgid ""
15821542
"The :meth:`split`, :meth:`replace`, :meth:`rindex`, :meth:`rpartition`, and :"
15831543
"meth:`rsplit` methods of string-like types (strings, Unicode strings, and :"
@@ -1593,19 +1553,17 @@ msgstr ""
15931553
"`7462` y :issue:`7622`)"
15941554

15951555
#: ../Doc/whatsnew/2.7.rst:1013
1596-
#, fuzzy
15971556
msgid ""
15981557
"The :mod:`pickle` and :mod:`cPickle` modules now automatically intern the "
15991558
"strings used for attribute names, reducing memory usage of the objects "
16001559
"resulting from unpickling. (Contributed by Jake McGuire; :issue:`5084`.)"
16011560
msgstr ""
16021561
"Los módulos :mod:`pickle` y :mod:`cPickle` ahora internan automáticamente "
16031562
"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`.)"
16061565

16071566
#: ../Doc/whatsnew/2.7.rst:1018
1608-
#, fuzzy
16091567
msgid ""
16101568
"The :mod:`cPickle` module now special-cases dictionaries, nearly halving the "
16111569
"time required to pickle them. (Contributed by Collin Winter; :issue:`5670`.)"
@@ -2906,7 +2864,6 @@ msgstr ""
29062864
"`8024`)."
29072865

29082866
#: ../Doc/whatsnew/2.7.rst:1648 ../Doc/whatsnew/2.7.rst:2508
2909-
#, fuzzy
29102867
msgid ""
29112868
"The :mod:`urlparse` module's :func:`~urlparse.urlsplit` now handles unknown "
29122869
"URL schemes in a fashion compliant with :rfc:`3986`: if the URL is of the "
@@ -2920,8 +2877,7 @@ msgstr ""
29202877
"URL es de la forma ``\"<something>://...\"``, el texto que precede a ``://`` "
29212878
"se trata como el esquema, incluso si es un esquema inventado que el módulo "
29222879
"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:"
29252881

29262882
#: ../Doc/whatsnew/2.7.rst:1663 ../Doc/whatsnew/2.7.rst:2523
29272883
#, fuzzy

0 commit comments

Comments
 (0)