@@ -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-10-13 07:32 +0100\n "
14
+ "PO-Revision-Date : 2021-10-13 09:13 +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 "
@@ -1573,12 +1573,10 @@ msgstr ""
1573
1573
"de Collin Winter; :issue:`5670`.)"
1574
1574
1575
1575
#: ../Doc/whatsnew/2.7.rst:1025
1576
- #, fuzzy
1577
1576
msgid "New and Improved Modules"
1578
1577
msgstr "Módulos nuevos y mejorados"
1579
1578
1580
1579
#: ../Doc/whatsnew/2.7.rst:1027
1581
- #, fuzzy
1582
1580
msgid ""
1583
1581
"As in every release, Python's standard library received a number of "
1584
1582
"enhancements and bug fixes. Here's a partial list of the most notable "
@@ -1589,12 +1587,11 @@ msgstr ""
1589
1587
"Como en cada versión, la biblioteca estándar de Python ha recibido una serie "
1590
1588
"de mejoras y correcciones de errores. Aquí hay una lista parcial de los "
1591
1589
"cambios más notables, ordenados alfabéticamente por nombre de módulo. "
1592
- "Consulta el archivo :file:`Misc/NEWS` en el árbol de fuentes para una lista "
1593
- "más completa de cambios, o mira los registros de Subversion para todos los "
1594
- "detalles."
1590
+ "Consulta el archivo :file:`Misc/NEWS` en el árbol de código fuente para una "
1591
+ "lista más completa de cambios, o mira los registros de Subversion para todos "
1592
+ "los detalles."
1595
1593
1596
1594
#: ../Doc/whatsnew/2.7.rst:1033
1597
- #, fuzzy
1598
1595
msgid ""
1599
1596
"The :mod:`bdb` module's base debugging class :class:`~bdb.Bdb` gained a "
1600
1597
"feature for skipping modules. The constructor now takes an iterable "
@@ -1611,18 +1608,16 @@ msgstr ""
1611
1608
"`5142`.)"
1612
1609
1613
1610
#: ../Doc/whatsnew/2.7.rst:1041
1614
- #, fuzzy
1615
1611
msgid ""
1616
1612
"The :mod:`binascii` module now supports the buffer API, so it can be used "
1617
1613
"with :class:`memoryview` instances and other similar buffer objects. "
1618
1614
"(Backported from 3.x by Florent Xicluna; :issue:`7703`.)"
1619
1615
msgstr ""
1620
1616
"El módulo :mod:`binascii` soporta ahora la API del buffer, por lo que puede "
1621
1617
"utilizarse con instancias de :class:`memoryview` y otros objetos de buffer "
1622
- "similares. (Retornado de la 3.x por Florent Xicluna; :issue:`7703`.)"
1618
+ "similares. (Tomado de la 3.x por Florent Xicluna; :issue:`7703`.)"
1623
1619
1624
1620
#: ../Doc/whatsnew/2.7.rst:1045
1625
- #, fuzzy
1626
1621
msgid ""
1627
1622
"Updated module: the :mod:`bsddb` module has been updated from 4.7.2devel9 to "
1628
1623
"version 4.8.4 of `the pybsddb package <https://www.jcea.es/programacion/"
@@ -1640,7 +1635,6 @@ msgstr ""
1640
1635
"jcea.es/pybsddb/file/tip/ChangeLog.)"
1641
1636
1642
1637
#: ../Doc/whatsnew/2.7.rst:1053
1643
- #, fuzzy
1644
1638
msgid ""
1645
1639
"The :mod:`bz2` module's :class:`~bz2.BZ2File` now supports the context "
1646
1640
"management protocol, so you can write ``with bz2.BZ2File(...) as f:``. "
@@ -1651,7 +1645,6 @@ msgstr ""
1651
1645
"como f:``. (Contribución de Hagen Fürstenau; :issue:`3860`.)"
1652
1646
1653
1647
#: ../Doc/whatsnew/2.7.rst:1057
1654
- #, fuzzy
1655
1648
msgid ""
1656
1649
"New class: the :class:`~collections.Counter` class in the :mod:`collections` "
1657
1650
"module is useful for tallying data. :class:`~collections.Counter` instances "
@@ -1664,7 +1657,6 @@ msgstr ""
1664
1657
"pero devuelven cero si faltan claves en lugar de lanzar un :exc:`KeyError`:"
1665
1658
1666
1659
#: ../Doc/whatsnew/2.7.rst:1079
1667
- #, fuzzy
1668
1660
msgid ""
1669
1661
"There are three additional :class:`~collections.Counter` methods. :meth:"
1670
1662
"`~collections.Counter.most_common` returns the N most common elements and "
@@ -1683,12 +1675,10 @@ msgstr ""
1683
1675
"u otra :class:`Counter`, los recuentos se restan. ::"
1684
1676
1685
1677
#: ../Doc/whatsnew/2.7.rst:1102
1686
- #, fuzzy
1687
1678
msgid "Contributed by Raymond Hettinger; :issue:`1696199`."
1688
1679
msgstr "Contribución de Raymond Hettinger; :issue:`1696199`."
1689
1680
1690
1681
#: ../Doc/whatsnew/2.7.rst:1106
1691
- #, fuzzy
1692
1682
msgid ""
1693
1683
"New class: :class:`~collections.OrderedDict` is described in the earlier "
1694
1684
"section :ref:`pep-0372`."
@@ -1697,7 +1687,6 @@ msgstr ""
1697
1687
"anterior :ref:`pep-0372`."
1698
1688
1699
1689
#: ../Doc/whatsnew/2.7.rst:1109
1700
- #, fuzzy
1701
1690
msgid ""
1702
1691
"New method: The :class:`~collections.deque` data type now has a :meth:"
1703
1692
"`~collections.deque.count` method that returns the number of contained "
@@ -1716,7 +1705,6 @@ msgstr ""
1716
1705
"características han sido añadidas por Raymond Hettinger)"
1717
1706
1718
1707
#: ../Doc/whatsnew/2.7.rst:1117
1719
- #, fuzzy
1720
1708
msgid ""
1721
1709
"The :class:`~collections.namedtuple` class now has an optional *rename* "
1722
1710
"parameter. If *rename* is true, field names that are invalid because they've "
@@ -1730,12 +1718,10 @@ msgstr ""
1730
1718
"de la lista de campos:"
1731
1719
1732
1720
#: ../Doc/whatsnew/2.7.rst:1128
1733
- #, fuzzy
1734
1721
msgid "(Added by Raymond Hettinger; :issue:`1818`.)"
1735
1722
msgstr "(Añadido por Raymond Hettinger; :issue:`1818`.)"
1736
1723
1737
1724
#: ../Doc/whatsnew/2.7.rst:1130
1738
- #, fuzzy
1739
1725
msgid ""
1740
1726
"Finally, the :class:`~collections.Mapping` abstract base class now returns :"
1741
1727
"const:`NotImplemented` if a mapping is compared to another type that isn't "
@@ -1746,7 +1732,6 @@ msgstr ""
1746
1732
"es un :class:`Mapping`. (Corregido por Daniel Stutzbach; :issue:`8729`.)"
1747
1733
1748
1734
#: ../Doc/whatsnew/2.7.rst:1135
1749
- #, fuzzy
1750
1735
msgid ""
1751
1736
"Constructors for the parsing classes in the :mod:`ConfigParser` module now "
1752
1737
"take an *allow_no_value* parameter, defaulting to false; if true, options "
@@ -1757,25 +1742,22 @@ msgstr ""
1757
1742
"verdadero, se permitirán las opciones sin valores. Por ejemplo::"
1758
1743
1759
1744
#: ../Doc/whatsnew/2.7.rst:1157
1760
- #, fuzzy
1761
1745
msgid "(Contributed by Mats Kindahl; :issue:`7005`.)"
1762
1746
msgstr "(Contribución de Mats Kindahl; :issue:`7005`.)"
1763
1747
1764
1748
#: ../Doc/whatsnew/2.7.rst:1159
1765
- #, fuzzy
1766
1749
msgid ""
1767
1750
"Deprecated function: :func:`contextlib.nested`, which allows handling more "
1768
1751
"than one context manager with a single :keyword:`with` statement, has been "
1769
1752
"deprecated, because the :keyword:`!with` statement now supports multiple "
1770
1753
"context managers."
1771
1754
msgstr ""
1772
1755
"Función obsoleta: :func:`contextlib.nested`, que permite manejar más de un "
1773
- "gestor de contexto con una sola sentencia :keyword:`with`, ha sido obsoleta, "
1774
- "porque la sentencia :keyword:`!with` soporta ahora múltiples gestores de "
1775
- "contexto."
1756
+ "gestor de contexto con una sola expresión :keyword:`with`, ha sido "
1757
+ "deprecada, porque la expresión :keyword:`!with` soporta ahora múltiples "
1758
+ "gestores de contexto."
1776
1759
1777
1760
#: ../Doc/whatsnew/2.7.rst:1164
1778
- #, fuzzy
1779
1761
msgid ""
1780
1762
"The :mod:`cookielib` module now ignores cookies that have an invalid version "
1781
1763
"field, one that doesn't contain an integer value. (Fixed by John J. Lee; :"
@@ -1786,7 +1768,6 @@ msgstr ""
1786
1768
"J. Lee; :issue:`3924`.)"
1787
1769
1788
1770
#: ../Doc/whatsnew/2.7.rst:1168
1789
- #, fuzzy
1790
1771
msgid ""
1791
1772
"The :mod:`copy` module's :func:`~copy.deepcopy` function will now correctly "
1792
1773
"copy bound instance methods. (Implemented by Robert Collins; :issue:`1515`.)"
@@ -1796,7 +1777,6 @@ msgstr ""
1796
1777
"Collins; :issue:`1515`.)"
1797
1778
1798
1779
#: ../Doc/whatsnew/2.7.rst:1172
1799
- #, fuzzy
1800
1780
msgid ""
1801
1781
"The :mod:`ctypes` module now always converts ``None`` to a C ``NULL`` "
1802
1782
"pointer for arguments declared as pointers. (Changed by Thomas Heller; :"
@@ -1812,7 +1792,6 @@ msgstr ""
1812
1792
"issue:`8142`.)"
1813
1793
1814
1794
#: ../Doc/whatsnew/2.7.rst:1179
1815
- #, fuzzy
1816
1795
msgid ""
1817
1796
"New method: the :mod:`datetime` module's :class:`~datetime.timedelta` class "
1818
1797
"gained a :meth:`~datetime.timedelta.total_seconds` method that returns the "
@@ -1847,7 +1826,6 @@ msgstr ""
1847
1826
"(Implementado por Raymond Hettinger; :issue:`4796`.)"
1848
1827
1849
1828
#: ../Doc/whatsnew/2.7.rst:1194
1850
- #, fuzzy
1851
1829
msgid ""
1852
1830
"Comparing instances of :class:`~decimal.Decimal` with floating-point numbers "
1853
1831
"now produces sensible results based on the numeric values of the operands. "
@@ -1868,7 +1846,6 @@ msgstr ""
1868
1846
"class:`~decimal.Decimal`. (Corregido por Mark Dickinson; :issue:`2531`.)"
1869
1847
1870
1848
#: ../Doc/whatsnew/2.7.rst:1203
1871
- #, fuzzy
1872
1849
msgid ""
1873
1850
"The constructor for :class:`~decimal.Decimal` now accepts floating-point "
1874
1851
"numbers (added by Raymond Hettinger; :issue:`8257`) and non-European Unicode "
@@ -1881,7 +1858,6 @@ msgstr ""
1881
1858
"Dickinson; :issue:`6595`)."
1882
1859
1883
1860
#: ../Doc/whatsnew/2.7.rst:1208
1884
- #, fuzzy
1885
1861
msgid ""
1886
1862
"Most of the methods of the :class:`~decimal.Context` class now accept "
1887
1863
"integers as well as :class:`~decimal.Decimal` instances; the only exceptions "
@@ -1894,7 +1870,6 @@ msgstr ""
1894
1870
"`~decimal.Context.is_canonical`. (Parche de Juan José Conti; :issue:`7633`.)"
1895
1871
1896
1872
#: ../Doc/whatsnew/2.7.rst:1213
1897
- #, fuzzy
1898
1873
msgid ""
1899
1874
"When using :class:`~decimal.Decimal` instances with a string's :meth:`~str."
1900
1875
"format` method, the default alignment was previously left-alignment. This "
@@ -1907,7 +1882,6 @@ msgstr ""
1907
1882
"para los tipos numéricos. (Cambiado por Mark Dickinson; :issue:`6857`.)"
1908
1883
1909
1884
#: ../Doc/whatsnew/2.7.rst:1218
1910
- #, fuzzy
1911
1885
msgid ""
1912
1886
"Comparisons involving a signaling NaN value (or ``sNAN``) now signal :const:"
1913
1887
"`InvalidOperation` instead of silently returning a true or false value "
0 commit comments