Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 174387c

Browse files
committed
traducción final
1 parent 4a320ac commit 174387c

File tree

1 file changed

+40
-7
lines changed

1 file changed

+40
-7
lines changed

deprecations/pending-removal-in-future.po

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ msgstr ""
1010
"Project-Id-Version: Python en Español 3.13\n"
1111
"Report-Msgid-Bugs-To: \n"
1212
"POT-Creation-Date: 2024-11-21 16:38-0300\n"
13-
"PO-Revision-Date: 2025-02-20 00:47+0100\n"
13+
"PO-Revision-Date: 2025-03-01 23:53+0100\n"
1414
"Last-Translator: Carlos Mena Pérez <@carlosm00>\n"
1515
"Language-Team: es <[email protected]>\n"
1616
"Language: es\n"
@@ -37,11 +37,13 @@ msgstr ""
3737
msgid ""
3838
":mod:`argparse`: Nesting argument groups and nesting mutually exclusive "
3939
"groups are deprecated."
40-
msgstr ":mod:`argparse`: grupos de argumentos y "
40+
msgstr ""
41+
":mod:`argparse`: Anidar grupos de argumentos y anidar grupos mutualmente "
42+
"excluyentes queda deprecado."
4143

4244
#: ../Doc/deprecations/pending-removal-in-future.rst:10
4345
msgid ":mod:`array`'s ``'u'`` format code (:gh:`57281`)"
44-
msgstr ""
46+
msgstr "Código de formato :mod:`array` de ``'u'`` (:gh:`57281`)"
4547

4648
#: ../Doc/deprecations/pending-removal-in-future.rst:12
4749
msgid ":mod:`builtins`:"
@@ -57,6 +59,9 @@ msgid ""
5759
"is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single "
5860
"argument signature."
5961
msgstr ""
62+
"Generators: ``throw(type, exc, tb)`` and ``athrow(type, exc, tb)`` signature "
63+
"is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single "
64+
"argument signature."
6065

6166
#: ../Doc/deprecations/pending-removal-in-future.rst:18
6267
msgid ""
@@ -69,31 +74,48 @@ msgid ""
6974
"keyword:`is` and :keyword:`or`. In a future release it will be changed to a "
7075
"syntax error. (:gh:`87999`)"
7176
msgstr ""
77+
"Actualmente Python acepta literales numéricos seguidos inmediatamente de "
78+
"palabras clave, por ejemplo, ``0in x``, ``1or x``, ``0if 1else 2``. Permite "
79+
"expresiones confusas y ambiguas como ``[0x1for x in y]`` (que se puede "
80+
"interpretar como ``[0x1 for x in y]`` o ``[0x1f or x in y]``). Se genera una "
81+
"advertencia de sintaxis si el literal numérico va seguido inmediatamente de "
82+
"una de las palabras clave :keyword:`and`, :keyword:`else`, :keyword:`for`, :"
83+
"keyword:`if`, :keyword:`in`, :keyword:`is` y :keyword:`or`. En una versión "
84+
"futura, se cambiará a un error de sintaxis. (:gh:`87999`)"
7285

7386
#: ../Doc/deprecations/pending-removal-in-future.rst:26
7487
msgid ""
7588
"Support for ``__index__()`` and ``__int__()`` method returning non-int type: "
7689
"these methods will be required to return an instance of a strict subclass "
7790
"of :class:`int`."
7891
msgstr ""
92+
"Compatibilidad con los métodos ``__index__()`` y ``__int__()`` que retornan "
93+
"un tipo que no es int: estos métodos serán necesarios para retornar una "
94+
"instancia de una subclase estricta de :class:`int`."
7995

8096
#: ../Doc/deprecations/pending-removal-in-future.rst:29
8197
msgid ""
8298
"Support for ``__float__()`` method returning a strict subclass of :class:"
8399
"`float`: these methods will be required to return an instance of :class:"
84100
"`float`."
85101
msgstr ""
102+
"Compatibilidad con el método ``__float__()`` que retorna una subclase "
103+
"estricta de :class:`float`: estos métodos serán necesarios para retornar una "
104+
"instancia de :class:`float`."
86105

87106
#: ../Doc/deprecations/pending-removal-in-future.rst:32
88107
msgid ""
89108
"Support for ``__complex__()`` method returning a strict subclass of :class:"
90109
"`complex`: these methods will be required to return an instance of :class:"
91110
"`complex`."
92111
msgstr ""
112+
"Compatibilidad con el método ``__complex__()`` que retorna una subclase "
113+
"estricta de :class:`complex`: estos métodos serán necesarios para retornar "
114+
"una instancia de :class:`complex`."
93115

94116
#: ../Doc/deprecations/pending-removal-in-future.rst:35
95117
msgid "Delegation of ``int()`` to ``__trunc__()`` method."
96-
msgstr ""
118+
msgstr "Delegación del método ``int()`` al ``__trunc__()``."
97119

98120
#: ../Doc/deprecations/pending-removal-in-future.rst:36
99121
msgid ""
@@ -102,13 +124,19 @@ msgid ""
102124
"single positional argument. (Contributed by Serhiy Storchaka in :gh:"
103125
"`109218`.)"
104126
msgstr ""
127+
"Ahora está obsoleto el paso de un número complejo como argumento *real* o "
128+
"*imag* en el constructor :func:`complex`; solo debe pasarse como un único "
129+
"argumento posicional. (Contribución de Serhiy Storchaka en :gh:`109218`.)"
105130

106131
#: ../Doc/deprecations/pending-removal-in-future.rst:41
107132
msgid ""
108133
":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants "
109134
"are deprecated and replaced by :data:`calendar.JANUARY` and :data:`calendar."
110135
"FEBRUARY`. (Contributed by Prince Roshan in :gh:`103636`.)"
111136
msgstr ""
137+
":mod:`calendar`: Las constantes ``calendar.January`` y ``calendar.February`` "
138+
"han quedado obsoletas y han sido reemplazadas por :data:`calendar.JANUARY` "
139+
"y :data:`calendar.FEBRUARY`. (Contribución de Prince Roshan en :gh:`103636`.)"
112140

113141
#: ../Doc/deprecations/pending-removal-in-future.rst:46
114142
msgid ""
@@ -135,6 +163,8 @@ msgid ""
135163
":meth:`~datetime.datetime.utcfromtimestamp`: use ``datetime.datetime."
136164
"fromtimestamp(timestamp, tz=datetime.UTC)``."
137165
msgstr ""
166+
":meth:`~datetime.datetime.utcfromtimestamp`: use ``datetime.datetime."
167+
"fromtimestamp(timestamp, tz=datetime.UTC)``."
138168

139169
#: ../Doc/deprecations/pending-removal-in-future.rst:56
140170
msgid ":mod:`gettext`: Plural value must be an integer."
@@ -153,6 +183,8 @@ msgid ""
153183
":func:`~importlib.util.cache_from_source` *debug_override* parameter is "
154184
"deprecated: use the *optimization* parameter instead."
155185
msgstr ""
186+
"El parámetro *debug_override* de :func:`~importlib.util.cache_from_source` "
187+
"queda obsoleto: use el parámetro *optimization* en su lugar."
156188

157189
#: ../Doc/deprecations/pending-removal-in-future.rst:64
158190
msgid ":mod:`importlib.metadata`:"
@@ -171,6 +203,8 @@ msgid ""
171203
":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, "
172204
"use :meth:`~logging.warning` instead."
173205
msgstr ""
206+
":mod:`logging`: el método ``warn()`` ha quedado obsoleto desde Python 3.3, "
207+
"use :meth:`~logging.warning` en su lugar."
174208

175209
#: ../Doc/deprecations/pending-removal-in-future.rst:72
176210
msgid ""
@@ -341,13 +375,12 @@ msgstr ""
341375
"valor que no sea ``None`` en un caso de prueba."
342376

343377
#: ../Doc/deprecations/pending-removal-in-future.rst:128
344-
#, fuzzy
345378
msgid ""
346379
":mod:`urllib.parse` deprecated functions: :func:`~urllib.parse.urlparse` "
347380
"instead"
348381
msgstr ""
349382
"Funciones deprecadas de :mod:`urllib.parse`: use :func:`~urllib.parse."
350-
"urlparse` en su lugar."
383+
"urlparse` en su lugar"
351384

352385
#: ../Doc/deprecations/pending-removal-in-future.rst:130
353386
msgid "``splitattr()``"
@@ -420,7 +453,7 @@ msgid ""
420453
msgstr ""
421454
":mod:`xml.etree.ElementTree`: La prueba del valor de verdad de un :class:"
422455
"`~xml.etree.ElementTree.Element` está obsoleta. En una versión futura, "
423-
"siempre devolverá ``True``. En su lugar, es preferible realizar pruebas "
456+
"siempre retornará ``True``. En su lugar, es preferible realizar pruebas "
424457
"explícitas ``len(elem)`` o ``elem is not None``."
425458

426459
#: ../Doc/deprecations/pending-removal-in-future.rst:154

0 commit comments

Comments
 (0)