Skip to content

Commit 8644b8d

Browse files
committed
Traducida sección "Obsoletos"
1 parent 388ab0b commit 8644b8d

File tree

2 files changed

+92
-3
lines changed

2 files changed

+92
-3
lines changed

dictionaries/whatsnew_3.8.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ Joe
8080
Neil
8181
Schemenauer
8282
Stefan
83+
Elvis
84+
Pranskevichus
85+
Berker
86+
Peksag
87+
Andrew
88+
Svetlov
8389

8490
autodocumentadas
8591
collections

whatsnew/3.8.po

Lines changed: 86 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgstr ""
99
"Project-Id-Version: Python en Español 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
12-
"PO-Revision-Date: 2020-10-13 23:10+0200\n"
12+
"PO-Revision-Date: 2020-10-14 11:05+0200\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
1515
"Content-Transfer-Encoding: 8bit\n"
@@ -2423,6 +2423,9 @@ msgid ""
24232423
"``bdist_wheel`` (wheel packages) instead. (Contributed by Victor Stinner in :"
24242424
"issue:`37481`.)"
24252425
msgstr ""
2426+
"El comando ``bdist_wininst`` de distutils está ahora obsoleto, usar "
2427+
"``bdist_wheel`` (paquetes wheel) en su lugar. (Contribución de Victor "
2428+
"Stinner en :issue:`37481`.)"
24262429

24272430
#: ../Doc/whatsnew/3.8.rst:1629
24282431
msgid ""
@@ -2431,6 +2434,10 @@ msgid ""
24312434
"exc:`PendingDeprecationWarning`. They will be removed in Python 3.9. "
24322435
"(Contributed by Serhiy Storchaka in :issue:`29209`.)"
24332436
msgstr ""
2437+
"Los métodos ``getchildren()`` y ``getiterator()`` del módulo :mod:`~xml."
2438+
"etree.ElementTree` ahora emiten una advertencia :exc:`DeprecationWarning`, "
2439+
"en lugar de :exc:`PendingDeprecationWarning`. Serán eliminados en Python "
2440+
"3.9. (Contribución de Serhiy Storchaka en :issue:`29209`.)"
24342441

24352442
#: ../Doc/whatsnew/3.8.rst:1635
24362443
msgid ""
@@ -2439,27 +2446,40 @@ msgid ""
24392446
"set_default_executor>` is deprecated and will be prohibited in Python 3.9. "
24402447
"(Contributed by Elvis Pranskevichus in :issue:`34075`.)"
24412448
msgstr ""
2449+
"Pasar un objeto a :meth:`loop.set_default_executor() <asyncio.loop."
2450+
"set_default_executor>` que no sea una instancia de :class:`concurrent."
2451+
"futures.ThreadPoolExecutor` está obsoleto y será prohibido en Python 3.9. "
2452+
"(Contribución de Elvis Pranskevichus en :issue:`34075`.)"
24422453

24432454
#: ../Doc/whatsnew/3.8.rst:1641
24442455
msgid ""
24452456
"The :meth:`__getitem__` methods of :class:`xml.dom.pulldom.DOMEventStream`, :"
24462457
"class:`wsgiref.util.FileWrapper` and :class:`fileinput.FileInput` have been "
24472458
"deprecated."
24482459
msgstr ""
2460+
"Los métodos :meth:`__getitem__` pertenecientes a las clases :class:`xml.dom."
2461+
"pulldom.DOMEventStream`, :class:`wsgiref.util.FileWrapper` y :class:"
2462+
"`fileinput.FileInput` están obsoletos a partir de ahora."
24492463

24502464
#: ../Doc/whatsnew/3.8.rst:1645
24512465
msgid ""
24522466
"Implementations of these methods have been ignoring their *index* parameter, "
24532467
"and returning the next item instead. (Contributed by Berker Peksag in :issue:"
24542468
"`9372`.)"
24552469
msgstr ""
2470+
"Las implementaciones de estos métodos han estado ignorando su parámetro "
2471+
"*index* y retornando el siguiente item en su lugar. (Contribución de Berker "
2472+
"Peksag en :issue:`9372`.)"
24562473

24572474
#: ../Doc/whatsnew/3.8.rst:1649
24582475
msgid ""
24592476
"The :class:`typing.NamedTuple` class has deprecated the ``_field_types`` "
24602477
"attribute in favor of the ``__annotations__`` attribute which has the same "
24612478
"information. (Contributed by Raymond Hettinger in :issue:`36320`.)"
24622479
msgstr ""
2480+
"El atributo ``_field_types`` de la clase :class:`typing.NamedTuple` está "
2481+
"ahora obsoleto en favor del atributo ``__annotations__``, que contiene la "
2482+
"misma información. (Contribución de Raymond Hettinger en :issue:`36320`.)"
24632483

24642484
#: ../Doc/whatsnew/3.8.rst:1653
24652485
msgid ""
@@ -2468,6 +2488,10 @@ msgid ""
24682488
"versions. :class:`~ast.Constant` should be used instead. (Contributed by "
24692489
"Serhiy Storchaka in :issue:`32892`.)"
24702490
msgstr ""
2491+
"Las clases ``Num``, ``Str``, ``Bytes``, ``NameConstant`` y ``Ellipsis`` del "
2492+
"módulo :mod:`ast` están consideradas obsoletas y serán eliminadas en "
2493+
"versiones futuras de Python. La clase :class:`~ast.Constant` debe ser usada "
2494+
"en su lugar. (Contribución de Serhiy Storchaka en :issue:`32892`.)"
24712495

24722496
#: ../Doc/whatsnew/3.8.rst:1658
24732497
msgid ""
@@ -2477,13 +2501,22 @@ msgid ""
24772501
"meth:`~ast.NodeVisitor.visit_Constant` method to handle all constant nodes. "
24782502
"(Contributed by Serhiy Storchaka in :issue:`36917`.)"
24792503
msgstr ""
2504+
"Los métodos ``visit_Num()``, ``visit_Str()``, ``visit_Bytes()``, "
2505+
"``visit_NameConstant()`` y ``visit_Ellipsis()`` de la clase :class:`ast."
2506+
"NodeVisitor` están obsoletos ahora y serán invocados en versiones futuras de "
2507+
"Python. Agregar el método :meth:`~ast.NodeVisitor.visit_Constant` para "
2508+
"manejar todos los nodos constantes. (Contribución de Serhiy Storchaka en :"
2509+
"issue:`36917`.)"
24802510

24812511
#: ../Doc/whatsnew/3.8.rst:1665
24822512
msgid ""
24832513
"The :func:`asyncio.coroutine` :term:`decorator` is deprecated and will be "
24842514
"removed in version 3.10. Instead of ``@asyncio.coroutine``, use :keyword:"
24852515
"`async def` instead. (Contributed by Andrew Svetlov in :issue:`36921`.)"
24862516
msgstr ""
2517+
"El :term:`decorator` :func:`asyncio.coroutine` está obsoleto y será "
2518+
"eliminado en Python 3.10. En lugar de ``@asyncio.coroutine``, se debe usar :"
2519+
"keyword:`async def`. (Contribución de Andrew Svetlov en :issue:`36921`.)"
24872520

24882521
#: ../Doc/whatsnew/3.8.rst:1670
24892522
msgid ""
@@ -2496,13 +2529,24 @@ msgid ""
24962529
"BoundedSemaphore`, :class:`asyncio.Queue`, :func:`asyncio."
24972530
"create_subprocess_exec`, and :func:`asyncio.create_subprocess_shell`."
24982531
msgstr ""
2532+
"En :mod:`asyncio`, pasar un argumento *loop* de forma explícita está ahora "
2533+
"obsoleto y será eliminado en Python 3.10 para las siguientes funciones y "
2534+
"constructores: :func:`asyncio.sleep`, :func:`asyncio.gather`, :func:`asyncio."
2535+
"shield`, :func:`asyncio.wait_for`, :func:`asyncio.wait`, :func:`asyncio."
2536+
"as_completed`, :class:`asyncio.Task`, :class:`asyncio.Lock`, :class:`asyncio."
2537+
"Event`, :class:`asyncio.Condition`, :class:`asyncio.Semaphore`, :class:"
2538+
"`asyncio.BoundedSemaphore`, :class:`asyncio.Queue`, :func:`asyncio."
2539+
"create_subprocess_exec` y :func:`asyncio.create_subprocess_shell`."
24992540

25002541
#: ../Doc/whatsnew/3.8.rst:1680
25012542
msgid ""
25022543
"The explicit passing of coroutine objects to :func:`asyncio.wait` has been "
25032544
"deprecated and will be removed in version 3.11. (Contributed by Yury "
25042545
"Selivanov in :issue:`34790`.)"
25052546
msgstr ""
2547+
"El paso explícito de objetos corrutina a :func:`asyncio.wait` está ahora "
2548+
"obsoleto y será eliminado en Python 3.11. (Contribución de Yury Selivanov "
2549+
"en :issue:`34790`.)"
25062550

25072551
#: ../Doc/whatsnew/3.8.rst:1684
25082552
msgid ""
@@ -2514,6 +2558,13 @@ msgid ""
25142558
"much better to use alternatives which return Unicode strings in Python 3. "
25152559
"These functions have been broken for a long time."
25162560
msgstr ""
2561+
"Las siguientes funciones y métodos del módulo :mod:`gettext` están obsoletos "
2562+
"para: :func:`~gettext.lgettext`, :func:`~gettext.ldgettext`, :func:`~gettext."
2563+
"lngettext` y :func:`~gettext.ldngettext`. Retornan bytes codificados y es "
2564+
"posible obtener excepciones inesperadas relacionadas con Unicode si hay "
2565+
"problemas de codificación con las cadenas traducidas. En Python 3 es mucho "
2566+
"mejor usar alternativas que retornen cadenas Unicode. Estas funciones han "
2567+
"estado rotas durante mucho tiempo."
25172568

25182569
#: ../Doc/whatsnew/3.8.rst:1692
25192570
msgid ""
@@ -2524,12 +2575,20 @@ msgid ""
25242575
"since they are only used for for the ``l*gettext()`` functions. (Contributed "
25252576
"by Serhiy Storchaka in :issue:`33710`.)"
25262577
msgstr ""
2578+
"La función :func:`~gettext.bind_textdomain_codeset`, los métodos :meth:"
2579+
"`~gettext.NullTranslations.output_charset` y :meth:`~gettext."
2580+
"NullTranslations.set_output_charset` y el parámetro *codeset* de las "
2581+
"funciones :func:`~gettext.translation` y :func:`~gettext.install` están "
2582+
"también obsoletos, dado que solo son usados para las funciones "
2583+
"``l*gettext()``. (Contribución de Serhiy Storchaka en :issue:`33710`.)"
25272584

25282585
#: ../Doc/whatsnew/3.8.rst:1700
25292586
msgid ""
25302587
"The :meth:`~threading.Thread.isAlive()` method of :class:`threading.Thread` "
25312588
"has been deprecated. (Contributed by Dong-hee Na in :issue:`35283`.)"
25322589
msgstr ""
2590+
"El método :meth:`~threading.Thread.isAlive()` de la clase :class:`threading."
2591+
"Thread` está ahora obsoleto. (Contribución de Dong-hee Na en :issue:`35283`.)"
25332592

25342593
#: ../Doc/whatsnew/3.8.rst:1704
25352594
msgid ""
@@ -2540,52 +2599,76 @@ msgid ""
25402599
"but do not have the :meth:`~object.__index__` method). In future version "
25412600
"they will be errors. (Contributed by Serhiy Storchaka in :issue:`36048`.)"
25422601
msgstr ""
2602+
"Muchas funciones incorporadas y de extensión que toman argumentos enteros "
2603+
"ahora emitirán una advertencia de deprecación para :class:`~decimal.Decimal`"
2604+
"\\ s, :class:`~fractions.Fraction`\\ s y cualquier otro objeto que se pueda "
2605+
"convertir a enteros solamente con pérdida (por ejemplo, aquellos que tienen "
2606+
"el método :meth:`~object .__int__` pero no el método :meth:`~object ."
2607+
"__index__`). En una versión futura, esto constituirá un error. (Contribución "
2608+
"de Serhiy Storchaka en :issue:`36048`.)"
25432609

25442610
#: ../Doc/whatsnew/3.8.rst:1712
25452611
msgid "Deprecated passing the following arguments as keyword arguments:"
25462612
msgstr ""
2613+
"El paso de los siguientes argumentos como argumentos por palabra clave está "
2614+
"ahora obsoleto:"
25472615

25482616
#: ../Doc/whatsnew/3.8.rst:1714
25492617
msgid ""
25502618
"*func* in :func:`functools.partialmethod`, :func:`weakref.finalize`, :meth:"
25512619
"`profile.Profile.runcall`, :meth:`cProfile.Profile.runcall`, :meth:`bdb.Bdb."
25522620
"runcall`, :meth:`trace.Trace.runfunc` and :func:`curses.wrapper`."
25532621
msgstr ""
2622+
"*func* en :func:`functools.partialmethod`, :func:`weakref.finalize`, :meth:"
2623+
"`profile.Profile.runcall`, :meth:`cProfile.Profile.runcall`, :meth:`bdb.Bdb."
2624+
"runcall`, :meth:`trace.Trace.runfunc` y :func:`curses.wrapper`."
25542625

25552626
#: ../Doc/whatsnew/3.8.rst:1718
25562627
msgid "*function* in :meth:`unittest.TestCase.addCleanup`."
2557-
msgstr ""
2628+
msgstr "*function* en :meth:`unittest.TestCase.addCleanup`."
25582629

25592630
#: ../Doc/whatsnew/3.8.rst:1719
25602631
msgid ""
25612632
"*fn* in the :meth:`~concurrent.futures.Executor.submit` method of :class:"
25622633
"`concurrent.futures.ThreadPoolExecutor` and :class:`concurrent.futures."
25632634
"ProcessPoolExecutor`."
25642635
msgstr ""
2636+
"*fn* en el método :meth:`~concurrent.futures.Executor.submit` de las clases :"
2637+
"class:`concurrent.futures.ThreadPoolExecutor` y :class:`concurrent.futures."
2638+
"ProcessPoolExecutor`."
25652639

25662640
#: ../Doc/whatsnew/3.8.rst:1722
25672641
msgid ""
25682642
"*callback* in :meth:`contextlib.ExitStack.callback`, :meth:`contextlib."
25692643
"AsyncExitStack.callback` and :meth:`contextlib.AsyncExitStack."
25702644
"push_async_callback`."
25712645
msgstr ""
2646+
"*callback* en :meth:`contextlib.ExitStack.callback`, :meth:`contextlib."
2647+
"AsyncExitStack.callback` y :meth:`contextlib.AsyncExitStack."
2648+
"push_async_callback`."
25722649

25732650
#: ../Doc/whatsnew/3.8.rst:1725
25742651
msgid ""
25752652
"*c* and *typeid* in the :meth:`~multiprocessing.managers.Server.create` "
25762653
"method of :class:`multiprocessing.managers.Server` and :class:"
25772654
"`multiprocessing.managers.SharedMemoryServer`."
25782655
msgstr ""
2656+
"*c* y *typeid* en el método :meth:`~multiprocessing.managers.Server.create` "
2657+
"de las clases :class:`multiprocessing.managers.Server` y :class:"
2658+
"`multiprocessing.managers.SharedMemoryServer`."
25792659

25802660
#: ../Doc/whatsnew/3.8.rst:1728
25812661
msgid "*obj* in :func:`weakref.finalize`."
2582-
msgstr ""
2662+
msgstr "*obj* en :func:`weakref.finalize`."
25832663

25842664
#: ../Doc/whatsnew/3.8.rst:1730
25852665
msgid ""
25862666
"In future releases of Python, they will be :ref:`positional-only <positional-"
25872667
"only_parameter>`. (Contributed by Serhiy Storchaka in :issue:`36492`.)"
25882668
msgstr ""
2669+
"En futuros lanzamientos de Python, todos ellos serán :ref:`argumentos solo "
2670+
"posicionales <positional-only_parameter>`. (Contribución de Serhiy Storchaka "
2671+
"en :issue:`36492`.)"
25892672

25902673
#: ../Doc/whatsnew/3.8.rst:1736
25912674
msgid "API and Feature Removals"

0 commit comments

Comments
 (0)