@@ -9,7 +9,7 @@ msgstr ""
9
9
"Project-Id-Version : Python en Español 3.7\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"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 "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
15
15
"Content-Transfer-Encoding : 8bit\n "
@@ -2423,6 +2423,9 @@ msgid ""
2423
2423
"``bdist_wheel`` (wheel packages) instead. (Contributed by Victor Stinner in :"
2424
2424
"issue:`37481`.)"
2425
2425
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`.)"
2426
2429
2427
2430
#: ../Doc/whatsnew/3.8.rst:1629
2428
2431
msgid ""
@@ -2431,6 +2434,10 @@ msgid ""
2431
2434
"exc:`PendingDeprecationWarning`. They will be removed in Python 3.9. "
2432
2435
"(Contributed by Serhiy Storchaka in :issue:`29209`.)"
2433
2436
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`.)"
2434
2441
2435
2442
#: ../Doc/whatsnew/3.8.rst:1635
2436
2443
msgid ""
@@ -2439,27 +2446,40 @@ msgid ""
2439
2446
"set_default_executor>` is deprecated and will be prohibited in Python 3.9. "
2440
2447
"(Contributed by Elvis Pranskevichus in :issue:`34075`.)"
2441
2448
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`.)"
2442
2453
2443
2454
#: ../Doc/whatsnew/3.8.rst:1641
2444
2455
msgid ""
2445
2456
"The :meth:`__getitem__` methods of :class:`xml.dom.pulldom.DOMEventStream`, :"
2446
2457
"class:`wsgiref.util.FileWrapper` and :class:`fileinput.FileInput` have been "
2447
2458
"deprecated."
2448
2459
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."
2449
2463
2450
2464
#: ../Doc/whatsnew/3.8.rst:1645
2451
2465
msgid ""
2452
2466
"Implementations of these methods have been ignoring their *index* parameter, "
2453
2467
"and returning the next item instead. (Contributed by Berker Peksag in :issue:"
2454
2468
"`9372`.)"
2455
2469
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`.)"
2456
2473
2457
2474
#: ../Doc/whatsnew/3.8.rst:1649
2458
2475
msgid ""
2459
2476
"The :class:`typing.NamedTuple` class has deprecated the ``_field_types`` "
2460
2477
"attribute in favor of the ``__annotations__`` attribute which has the same "
2461
2478
"information. (Contributed by Raymond Hettinger in :issue:`36320`.)"
2462
2479
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`.)"
2463
2483
2464
2484
#: ../Doc/whatsnew/3.8.rst:1653
2465
2485
msgid ""
@@ -2468,6 +2488,10 @@ msgid ""
2468
2488
"versions. :class:`~ast.Constant` should be used instead. (Contributed by "
2469
2489
"Serhiy Storchaka in :issue:`32892`.)"
2470
2490
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`.)"
2471
2495
2472
2496
#: ../Doc/whatsnew/3.8.rst:1658
2473
2497
msgid ""
@@ -2477,13 +2501,22 @@ msgid ""
2477
2501
"meth:`~ast.NodeVisitor.visit_Constant` method to handle all constant nodes. "
2478
2502
"(Contributed by Serhiy Storchaka in :issue:`36917`.)"
2479
2503
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`.)"
2480
2510
2481
2511
#: ../Doc/whatsnew/3.8.rst:1665
2482
2512
msgid ""
2483
2513
"The :func:`asyncio.coroutine` :term:`decorator` is deprecated and will be "
2484
2514
"removed in version 3.10. Instead of ``@asyncio.coroutine``, use :keyword:"
2485
2515
"`async def` instead. (Contributed by Andrew Svetlov in :issue:`36921`.)"
2486
2516
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`.)"
2487
2520
2488
2521
#: ../Doc/whatsnew/3.8.rst:1670
2489
2522
msgid ""
@@ -2496,13 +2529,24 @@ msgid ""
2496
2529
"BoundedSemaphore`, :class:`asyncio.Queue`, :func:`asyncio."
2497
2530
"create_subprocess_exec`, and :func:`asyncio.create_subprocess_shell`."
2498
2531
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`."
2499
2540
2500
2541
#: ../Doc/whatsnew/3.8.rst:1680
2501
2542
msgid ""
2502
2543
"The explicit passing of coroutine objects to :func:`asyncio.wait` has been "
2503
2544
"deprecated and will be removed in version 3.11. (Contributed by Yury "
2504
2545
"Selivanov in :issue:`34790`.)"
2505
2546
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`.)"
2506
2550
2507
2551
#: ../Doc/whatsnew/3.8.rst:1684
2508
2552
msgid ""
@@ -2514,6 +2558,13 @@ msgid ""
2514
2558
"much better to use alternatives which return Unicode strings in Python 3. "
2515
2559
"These functions have been broken for a long time."
2516
2560
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."
2517
2568
2518
2569
#: ../Doc/whatsnew/3.8.rst:1692
2519
2570
msgid ""
@@ -2524,12 +2575,20 @@ msgid ""
2524
2575
"since they are only used for for the ``l*gettext()`` functions. (Contributed "
2525
2576
"by Serhiy Storchaka in :issue:`33710`.)"
2526
2577
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`.)"
2527
2584
2528
2585
#: ../Doc/whatsnew/3.8.rst:1700
2529
2586
msgid ""
2530
2587
"The :meth:`~threading.Thread.isAlive()` method of :class:`threading.Thread` "
2531
2588
"has been deprecated. (Contributed by Dong-hee Na in :issue:`35283`.)"
2532
2589
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`.)"
2533
2592
2534
2593
#: ../Doc/whatsnew/3.8.rst:1704
2535
2594
msgid ""
@@ -2540,52 +2599,76 @@ msgid ""
2540
2599
"but do not have the :meth:`~object.__index__` method). In future version "
2541
2600
"they will be errors. (Contributed by Serhiy Storchaka in :issue:`36048`.)"
2542
2601
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`.)"
2543
2609
2544
2610
#: ../Doc/whatsnew/3.8.rst:1712
2545
2611
msgid "Deprecated passing the following arguments as keyword arguments:"
2546
2612
msgstr ""
2613
+ "El paso de los siguientes argumentos como argumentos por palabra clave está "
2614
+ "ahora obsoleto:"
2547
2615
2548
2616
#: ../Doc/whatsnew/3.8.rst:1714
2549
2617
msgid ""
2550
2618
"*func* in :func:`functools.partialmethod`, :func:`weakref.finalize`, :meth:"
2551
2619
"`profile.Profile.runcall`, :meth:`cProfile.Profile.runcall`, :meth:`bdb.Bdb."
2552
2620
"runcall`, :meth:`trace.Trace.runfunc` and :func:`curses.wrapper`."
2553
2621
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`."
2554
2625
2555
2626
#: ../Doc/whatsnew/3.8.rst:1718
2556
2627
msgid "*function* in :meth:`unittest.TestCase.addCleanup`."
2557
- msgstr ""
2628
+ msgstr "*function* en :meth:`unittest.TestCase.addCleanup`. "
2558
2629
2559
2630
#: ../Doc/whatsnew/3.8.rst:1719
2560
2631
msgid ""
2561
2632
"*fn* in the :meth:`~concurrent.futures.Executor.submit` method of :class:"
2562
2633
"`concurrent.futures.ThreadPoolExecutor` and :class:`concurrent.futures."
2563
2634
"ProcessPoolExecutor`."
2564
2635
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`."
2565
2639
2566
2640
#: ../Doc/whatsnew/3.8.rst:1722
2567
2641
msgid ""
2568
2642
"*callback* in :meth:`contextlib.ExitStack.callback`, :meth:`contextlib."
2569
2643
"AsyncExitStack.callback` and :meth:`contextlib.AsyncExitStack."
2570
2644
"push_async_callback`."
2571
2645
msgstr ""
2646
+ "*callback* en :meth:`contextlib.ExitStack.callback`, :meth:`contextlib."
2647
+ "AsyncExitStack.callback` y :meth:`contextlib.AsyncExitStack."
2648
+ "push_async_callback`."
2572
2649
2573
2650
#: ../Doc/whatsnew/3.8.rst:1725
2574
2651
msgid ""
2575
2652
"*c* and *typeid* in the :meth:`~multiprocessing.managers.Server.create` "
2576
2653
"method of :class:`multiprocessing.managers.Server` and :class:"
2577
2654
"`multiprocessing.managers.SharedMemoryServer`."
2578
2655
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`."
2579
2659
2580
2660
#: ../Doc/whatsnew/3.8.rst:1728
2581
2661
msgid "*obj* in :func:`weakref.finalize`."
2582
- msgstr ""
2662
+ msgstr "*obj* en :func:`weakref.finalize`. "
2583
2663
2584
2664
#: ../Doc/whatsnew/3.8.rst:1730
2585
2665
msgid ""
2586
2666
"In future releases of Python, they will be :ref:`positional-only <positional-"
2587
2667
"only_parameter>`. (Contributed by Serhiy Storchaka in :issue:`36492`.)"
2588
2668
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`.)"
2589
2672
2590
2673
#: ../Doc/whatsnew/3.8.rst:1736
2591
2674
msgid "API and Feature Removals"
0 commit comments