You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
msgid "(Contributed by Victor Stinner in :issue:`35059`.)"
msgstr ""
msgstr "(Contribución de Victor Stinner en :issue:`35059`.)"
#: ../Doc/whatsnew/3.8.rst:1567
msgid ""
Expand All
@@ -2199,13 +2233,20 @@ msgid ""
"excluded from the limited API (stable ABI), and were not documented. "
"(Contributed by Victor Stinner in :issue:`35713`.)"
msgstr ""
"Las funciones :c:func:`PyByteArray_Init` y :c:func:`PyByteArray_Fini` se han "
"eliminado. No eran de utilidad desde Python 2.7.4 y Python 3.2.0, cuando "
"fueron excluidas de la API limitada (ABI estable) y dejaron de estar "
"documentadas. (Contribución de Victor Stinner en :issue:`35713`.)"
#: ../Doc/whatsnew/3.8.rst:1572
msgid ""
"The result of :c:func:`PyExceptionClass_Name` is now of type ``const char "
"*`` rather of ``char *``. (Contributed by Serhiy Storchaka in :issue:"
"`33818`.)"
msgstr ""
"El resultado de :c:func:`PyExceptionClass_Name` es ahora de tipo ``const "
"char *`` en vez de ``char *``. (Contribución de Serhiy Storchaka en :issue:"
"`33818`.)"
#: ../Doc/whatsnew/3.8.rst:1576
msgid ""
Expand All
@@ -2217,6 +2258,14 @@ msgid ""
"annoyance to developers following CPython development, as forgetting to copy "
"the file could produce build failures."
msgstr ""
"La dualidad conformada por ``Modules/Setup.dist`` y ``Modules/Setup`` ha "
"sido eliminada. Anteriormente, al actualizar el árbol de fuentes de CPython, "
"se tenía que copiar manualmente ``Modules/Setup.dist`` (dentro del árbol de "
"fuentes) a ``Modules/Setup`` (dentro del árbol de compilación) para reflejar "
"cualquier cambio en sentido ascendente. Esto suponía un pequeño beneficio "
"para los empaquetadores, a expensas de una frecuente molestia para los "
"desarrolladores de CPython, ya que olvidarse de copiar el archivo podía "
"ocasionar fallos de compilación."
#: ../Doc/whatsnew/3.8.rst:1584
msgid ""
Expand All
@@ -2225,10 +2274,15 @@ msgid ""
"their changes in a git fork of CPython or as patch files, as they would do "
"for any other change to the source tree."
msgstr ""
"Ahora el sistema de compilación siempre lee desde ``Modules/Setup`` dentro "
"del árbol de fuentes. Se recomienda a las personas que deseen personalizar "
"este archivo que mantengan sus cambios en un fork de git de CPython o como "
"archivos de parche, como harían con cualquier otro cambio en el árbol de "
"fuentes."
#: ../Doc/whatsnew/3.8.rst:1589
msgid "(Contributed by Antoine Pitrou in :issue:`32430`.)"
msgstr ""
msgstr "(Contribución de Antoine Pitrou en :issue:`32430`.)"
#: ../Doc/whatsnew/3.8.rst:1591
msgid ""
Expand All
@@ -2245,6 +2299,18 @@ msgid ""
"available. (Contributed by Serhiy Storchaka in :issue:`36048` and :issue:"
"`20092`.)"
msgstr ""
"Las funciones que convierten un número de Python a un entero de C, como :c:"
"func:`PyLong_AsLong`, y las funciones de análisis de argumentos como :c:func:"
"`PyArg_ParseTuple` con unidades de formato de conversión de enteros como "
"``'i'``, ahora usarán el método especial :meth:`~object.__index__` si está "
"disponible, en lugar de :meth:`~object.__int__`. Una advertencia de "
"deprecación se emitirá para aquellos objetos que tengan el método "
"``__int__()`` pero no el método ``__index__()`` (como :class:`~decimal."
"Decimal` y :class:`~fractions.Fraction`). :c:func:`PyNumber_Check` ahora "
"retornará ``1`` para los objetos que implementen ``__index__()``. :c:func:"
"`PyNumber_Long`, :c:func:`PyNumber_Float` y :c:func:`PyFloat_AsDouble` ahora "
"también usan el método ``__index__()`` si está disponible. (Contribución de "
"Serhiy Storchaka en :issue:`36048` y :issue:`20092`.)"
#: ../Doc/whatsnew/3.8.rst:1605
msgid ""
Expand All
@@ -2254,6 +2320,11 @@ msgid ""
"deallocation may need to be adjusted. (Contributed by Eddie Elizondo in :"
"issue:`35810`.)"
msgstr ""
"Los objetos de tipo asignados al montículo ahora aumentarán su recuento de "
"referencias en :c:func:`PyObject_Init` (y en su macro paralela "
"``PyObject_INIT``) en lugar de en :c:func:`PyType_GenericAlloc`. Es posible "
"que deban ajustarse los tipos que modifican la asignación o desasignación de "
"instancias. (Contribución de Eddie Elizondo en :issue:`35810`.)"
#: ../Doc/whatsnew/3.8.rst:1611
msgid ""
Expand All
@@ -2262,13 +2333,21 @@ msgid ""
"parameter for indicating the number of positional-only arguments. "
"(Contributed by Pablo Galindo in :issue:`37221`.)"
msgstr ""
"La nueva función :c:func:`PyCode_NewWithPosOnlyArgs` permite crear objetos "
"de código, al igual que :c:func:`PyCode_New`, pero con un parámetro "
"*posonlyargcount* extra, que permite indicar el número de argumentos solo "
"posicionales."
#: ../Doc/whatsnew/3.8.rst:1616
msgid ""
":c:func:`Py_SetPath` now sets :data:`sys.executable` to the program full "
"path (:c:func:`Py_GetProgramFullPath`) rather than to the program name (:c:"
"func:`Py_GetProgramName`). (Contributed by Victor Stinner in :issue:`38234`.)"
msgstr ""
":c:func:`Py_SetPath` ahora establece :data:`sys.executable` en la ruta "
"completa del programa (:c:func:`Py_GetProgramFullPath`), en vez de en el "
"nombre del programa (:c:func:`Py_GetProgramName`). (Contribución de Victor "
"Stinner en :issue:`38234`.)"
#: ../Doc/whatsnew/3.8.rst:1623
msgid "Deprecated"
Expand Down
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.