@@ -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 : 2023-10-12 19:43+0200\n "
14
- "PO-Revision-Date : 2022 -12-08 16:15-0300 \n "
14
+ "PO-Revision-Date : 2023 -12-11 20:13+0100 \n "
15
15
"Last-Translator : Sofía Denner <sofi.denner@gmail.com>\n "
16
- "Language : es_AR\n "
17
16
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17
+ "Language : es_AR \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.13.0\n "
23
+ "X-Generator : Poedit 3.0.1\n "
23
24
24
25
#: ../Doc/library/collections.abc.rst:2
25
26
msgid ":mod:`collections.abc` --- Abstract Base Classes for Containers"
@@ -35,15 +36,14 @@ msgid "**Source code:** :source:`Lib/_collections_abc.py`"
35
36
msgstr "**Código fuente:** :source:`Lib/_collections_abc.py`"
36
37
37
38
#: ../Doc/library/collections.abc.rst:23
38
- #, fuzzy
39
39
msgid ""
40
40
"This module provides :term:`abstract base classes <abstract base class>` "
41
41
"that can be used to test whether a class provides a particular interface; "
42
42
"for example, whether it is :term:`hashable` or whether it is a mapping."
43
43
msgstr ""
44
44
"Este módulo proporciona :term:`clases base abstractas <abstract base class>` "
45
45
"que pueden usarse para probar si una clase proporciona una interfaz "
46
- "específica; por ejemplo, si es hashable o si es un mapeo."
46
+ "específica; por ejemplo, si es :term:` hashable` o si es un mapeo."
47
47
48
48
#: ../Doc/library/collections.abc.rst:27
49
49
msgid ""
@@ -459,14 +459,12 @@ msgid "``aclose``, ``__aiter__``, ``__anext__``"
459
459
msgstr "``aclose``, ``__aiter__``, ``__anext__``"
460
460
461
461
#: ../Doc/library/collections.abc.rst:180
462
- #, fuzzy
463
462
msgid ":class:`Buffer` [1]_"
464
- msgstr ":class:`Iterator ` [1]_"
463
+ msgstr ":class:`Buffer ` [1]_"
465
464
466
465
#: ../Doc/library/collections.abc.rst:180
467
- #, fuzzy
468
466
msgid "``__buffer__``"
469
- msgstr "``__iter__ ``"
467
+ msgstr "``__buffer__ ``"
470
468
471
469
#: ../Doc/library/collections.abc.rst:185
472
470
msgid "Footnotes"
@@ -599,6 +597,10 @@ msgid ""
599
597
"union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`. For "
600
598
"use as an ABC, prefer :class:`Sequence` or :class:`collections.abc.Buffer`."
601
599
msgstr ""
600
+ "La ABC :class:`ByteString` está obsoleta. Para usar con ``type hints``, "
601
+ "mejor use una unión del tipo ``bytes | bytearray``, o :class:`collections."
602
+ "abc.Buffer`. Para usar como una ABC, mejor use :class:`Sequence` o :class:"
603
+ "`collections.abc.Buffer`."
602
604
603
605
#: ../Doc/library/collections.abc.rst:285
604
606
msgid "ABCs for read-only and mutable sets."
@@ -701,6 +703,8 @@ msgid ""
701
703
"ABC for classes that provide the :meth:`~object.__buffer__` method, "
702
704
"implementing the :ref:`buffer protocol <bufferobjects>`. See :pep:`688`."
703
705
msgstr ""
706
+ "ABC para clases que proveen el método :meth:`~object.__buffer__`, "
707
+ "implementando el :ref:`protocolo búfer <bufferobjects>`. Ver :pep:`688`."
704
708
705
709
#: ../Doc/library/collections.abc.rst:364
706
710
msgid "Examples and Recipes"
@@ -769,7 +773,6 @@ msgstr ""
769
773
"las otras operaciones seguirán automáticamente su ejemplo."
770
774
771
775
#: ../Doc/library/collections.abc.rst:421
772
- #, fuzzy
773
776
msgid ""
774
777
"The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash "
775
778
"value for the set; however, :meth:`__hash__` is not defined because not all "
@@ -779,9 +782,10 @@ msgid ""
779
782
msgstr ""
780
783
"El mixin :class:`Set` proporciona un método :meth:`_hash` para calcular un "
781
784
"valor hash para el conjunto; sin embargo, :meth:`__hash__` no está definido "
782
- "porque no todos los conjuntos son encadenados o inmutables. Para agregar "
783
- "capacidad de encadenamiento en conjuntos que usan mixin, herede de ambos :"
784
- "meth:`Set` y :meth:`Hashable`, luego defina ``__hash__ = Set._hash``."
785
+ "porque no todos los conjuntos son :term:`hashable` o inmutables. Para "
786
+ "agregar la capacidad de encadenamiento en conjuntos usando métodos mixin, "
787
+ "herede de ambos :meth:`Set` y :meth:`Hashable`, luego defina ``__hash__ = "
788
+ "Set._hash``."
785
789
786
790
#: ../Doc/library/collections.abc.rst:429
787
791
msgid ""
0 commit comments