@@ -13,12 +13,12 @@ msgstr ""
1313"POT-Creation-Date : 2023-10-12 19:43+0200\n "
1414"PO-Revision-Date : 2022-11-24 11:54+0100\n "
1515"Last-Translator : Claudia Millan <clmilneb@gmail.com>\n "
16- "Language : es\n "
1716"Language-Team : python-doc-es\n "
18- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17+ "Language : es \n "
1918"MIME-Version : 1.0\n "
2019"Content-Type : text/plain; charset=utf-8\n "
2120"Content-Transfer-Encoding : 8bit\n "
21+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
2222"Generated-By : Babel 2.13.0\n "
2323
2424#: ../Doc/whatsnew/2.5.rst:3
@@ -1611,18 +1611,17 @@ msgstr ""
16111611"`TypeError` si no se cumple este requisito."
16121612
16131613#: ../Doc/whatsnew/2.5.rst:957
1614- #, fuzzy
16151614msgid ""
16161615"A corresponding :c:member:`~PyNumberMethods.nb_index` slot was added to the "
16171616"C-level :c:type:`PyNumberMethods` structure to let C extensions implement "
16181617"this protocol. ``PyNumber_Index(obj)`` can be used in extension code to call "
16191618"the :meth:`__index__` function and retrieve its result."
16201619msgstr ""
1621- "Se ha añadido la correspondiente ranura :attr:` nb_index` a la estructura :c: "
1622- "type:`PyNumberMethods` de nivel C para que las extensiones C puedan "
1623- "implementar este protocolo. El código de la extensión puede utilizar "
1624- "``PyNumber_Index(obj)`` para llamar a la función :meth:`__index__` y obtener "
1625- "su resultado."
1620+ "Se agregó una ranura :c:member:`~PyNumberMethods. nb_index` correspondiente a "
1621+ "la estructura :c: type:`PyNumberMethods` de nivel C para permitir que las "
1622+ "extensiones C implementen este protocolo. ``PyNumber_Index(obj)`` se puede "
1623+ "utilizar en código de extensión para llamar a la función :meth:`__index__` y "
1624+ "recuperar su resultado."
16261625
16271626#: ../Doc/whatsnew/2.5.rst:965
16281627msgid ":pep:`357` - Allowing Any Object to be Used for Slicing"
@@ -2502,16 +2501,15 @@ msgstr ""
25022501"precisión)"
25032502
25042503#: ../Doc/whatsnew/2.5.rst:1451
2505- #, fuzzy
25062504msgid ""
25072505"Constants named :const:`os.SEEK_SET`, :const:`os.SEEK_CUR`, and :const:`os."
25082506"SEEK_END` have been added; these are the parameters to the :func:`os.lseek` "
25092507"function. Two new constants for locking are :const:`os.O_SHLOCK` and :const:"
25102508"`os.O_EXLOCK`."
25112509msgstr ""
2512- "Se han añadido las constantes :attr :`os.SEEK_SET`, :attr :`os.SEEK_CUR` y :"
2513- "attr :`os.SEEK_END`, que son los parámetros de la función :func:`os.lseek`. "
2514- "Dos nuevas constantes para el bloqueo son :attr :`os.O_SHLOCK` y :attr :`os."
2510+ "Se han añadido las constantes :const :`os.SEEK_SET`, :const :`os.SEEK_CUR` y :"
2511+ "const :`os.SEEK_END`, que son los parámetros de la función :func:`os.lseek`. "
2512+ "Dos nuevas constantes para el bloqueo son :const :`os.O_SHLOCK` y :const :`os."
25152513"O_EXLOCK`."
25162514
25172515#: ../Doc/whatsnew/2.5.rst:1456
@@ -2846,7 +2844,6 @@ msgstr ""
28462844"threading y OS/2 lo hacen. (Contribución de Andrew MacIntyre)"
28472845
28482846#: ../Doc/whatsnew/2.5.rst:1603
2849- #, fuzzy
28502847msgid ""
28512848"The :mod:`unicodedata` module has been updated to use version 4.1.0 of the "
28522849"Unicode character database. Version 3.2.0 is required by some "
@@ -2855,7 +2852,7 @@ msgstr ""
28552852"El módulo :mod:`unicodedata` ha sido actualizado para utilizar la versión "
28562853"4.1.0 de la base de datos de caracteres Unicode. La versión 3.2.0 es "
28572854"requerida por algunas especificaciones, por lo que sigue estando disponible "
2858- "como :attr :`unicodedata.ucd_3_2_0`."
2855+ "como :data :`unicodedata.ucd_3_2_0`."
28592856
28602857#: ../Doc/whatsnew/2.5.rst:1607
28612858msgid ""
@@ -3666,7 +3663,6 @@ msgstr ""
36663663"parámetro *flags*::"
36673664
36683665#: ../Doc/whatsnew/2.5.rst:2117
3669- #, fuzzy
36703666msgid ""
36713667"No official documentation has been written for the AST code yet, but :pep:"
36723668"`339` discusses the design. To start learning about the code, read the "
@@ -3684,10 +3680,10 @@ msgstr ""
36843680"definición de los distintos nodos AST en :file:`Parser/Python.asdl`. Un "
36853681"script de Python lee este archivo y genera un conjunto de definiciones de "
36863682"estructuras C en :file:`Include/Python-ast.h`. Las funciones :c:func:"
3687- "`PyParser_ASTFromString` y :c:func:`PyParser_ASTFromFile`, definidas en :"
3683+ "`PyParser_ASTFromString` y :c:func:`! PyParser_ASTFromFile`, definidas en :"
36883684"file:`Include/pythonrun.h`, toman el código fuente de Python como entrada y "
36893685"devuelven la raíz de un AST que representa el contenido. Este AST puede "
3690- "convertirse en un objeto de código mediante :c:func:`PyAST_Compile`. Para "
3686+ "convertirse en un objeto de código mediante :c:func:`! PyAST_Compile`. Para "
36913687"más información, lea el código fuente, y luego haga preguntas en python-dev."
36923688
36933689#: ../Doc/whatsnew/2.5.rst:2127
@@ -3743,7 +3739,6 @@ msgstr ""
37433739"objetos de Python."
37443740
37453741#: ../Doc/whatsnew/2.5.rst:2152
3746- #, fuzzy
37473742msgid ""
37483743"Previously these different families all reduced to the platform's :c:func:"
37493744"`malloc` and :c:func:`free` functions. This meant it didn't matter if you "
@@ -3755,12 +3750,11 @@ msgid ""
37553750msgstr ""
37563751"Anteriormente estas diferentes familias se reducían a las funciones :c:func:"
37573752"`malloc` y :c:func:`free` de la plataforma. Esto significaba que no "
3758- "importaba si te equivocabas y asignabas memoria con la función :c:func:"
3759- "`PyMem` pero la liberabas con la función :c:func:`PyObject`. Con los "
3760- "cambios de la versión 2.5 en obmalloc, estas familias hacen ahora cosas "
3761- "diferentes y los desajustes probablemente darán lugar a un fallo de "
3762- "seguridad. Deberías probar cuidadosamente tus módulos de extensión C con "
3763- "Python 2.5."
3753+ "importaba si te equivocabas y asignabas memoria con la función ``PyMem`` "
3754+ "pero la liberabas con la función ``PyObject``. Con los cambios de la "
3755+ "versión 2.5 en obmalloc, estas familias hacen ahora cosas diferentes y los "
3756+ "desajustes probablemente darán lugar a un fallo de seguridad. Deberías "
3757+ "probar cuidadosamente tus módulos de extensión C con Python 2.5."
37643758
37653759#: ../Doc/whatsnew/2.5.rst:2159
37663760msgid ""
@@ -3790,7 +3784,6 @@ msgstr ""
37903784"Warsaw.)"
37913785
37923786#: ../Doc/whatsnew/2.5.rst:2170
3793- #, fuzzy
37943787msgid ""
37953788"Two new macros can be used to indicate C functions that are local to the "
37963789"current file so that a faster calling convention can be used. "
@@ -3808,7 +3801,7 @@ msgstr ""
38083801"llamada más rápida. ``Py_LOCAL(type)`` declara que la función devuelve un "
38093802"valor del *tipo* especificado y utiliza un calificador de llamada rápida. "
38103803"``Py_LOCAL_INLINE(type)`` hace lo mismo y también solicita que la función "
3811- "sea inline. Si :c:func:` PY_LOCAL_AGGRESSIVE` se define antes de que se "
3804+ "sea inline. Si :c:macro:`! PY_LOCAL_AGGRESSIVE` se define antes de que se "
38123805"incluya :file:`python.h`, se habilita un conjunto de optimizaciones más "
38133806"agresivas para el módulo; debería comparar los resultados para averiguar si "
38143807"estas optimizaciones realmente hacen el código más rápido. (Contribuido por "
@@ -3823,15 +3816,14 @@ msgstr ""
38233816"clases base como su argumento *base*. (Contribuido por Georg Brandl.)"
38243817
38253818#: ../Doc/whatsnew/2.5.rst:2184
3826- #, fuzzy
38273819msgid ""
38283820"The :c:func:`!PyErr_Warn` function for issuing warnings is now deprecated in "
38293821"favour of ``PyErr_WarnEx(category, message, stacklevel)`` which lets you "
38303822"specify the number of stack frames separating this function and the caller. "
38313823"A *stacklevel* of 1 is the function calling :c:func:`PyErr_WarnEx`, 2 is the "
38323824"function above that, and so forth. (Added by Neal Norwitz.)"
38333825msgstr ""
3834- "La función :c:func:`PyErr_Warn` para emitir avisos está ahora obsoleta en "
3826+ "La función :c:func:`! PyErr_Warn` para emitir avisos está ahora obsoleta en "
38353827"favor de ``PyErr_WarnEx(category, message, stacklevel)`` que permite "
38363828"especificar el número de marcos de pila que separan esta función y la que la "
38373829"llama. Un *stacklevel* de 1 es la función que llama a :c:func:"
@@ -3849,17 +3841,16 @@ msgstr ""
38493841"por Anthony Baxter, Martin von Löwis, Skip Montanaro)"
38503842
38513843#: ../Doc/whatsnew/2.5.rst:2194
3852- #, fuzzy
38533844msgid ""
38543845"The :c:func:`!PyRange_New` function was removed. It was never documented, "
38553846"never used in the core code, and had dangerously lax error checking. In the "
38563847"unlikely case that your extensions were using it, you can replace it by "
38573848"something like the following::"
38583849msgstr ""
3859- "Se ha eliminado la función :c:func:`PyRange_New`. Nunca se documentó, nunca "
3860- "se utilizó en el código del núcleo, y tenía una comprobación de errores "
3861- "peligrosamente laxa. En el improbable caso de que sus extensiones la "
3862- "utilizaran, puede sustituirla por algo como lo siguiente::"
3850+ "Se ha eliminado la función :c:func:`! PyRange_New`. Nunca se documentó, "
3851+ "nunca se utilizó en el código del núcleo, y tenía una comprobación de "
3852+ "errores peligrosamente laxa. En el improbable caso de que sus extensiones "
3853+ "la utilizaran, puede sustituirla por algo como lo siguiente::"
38633854
38643855#: ../Doc/whatsnew/2.5.rst:2208
38653856msgid "Port-Specific Changes"
@@ -4041,8 +4032,8 @@ msgstr ""
40414032
40424033#: ../Doc/whatsnew/2.5.rst:1342
40434034msgid "universal newlines"
4044- msgstr ""
4035+ msgstr "nuevas líneas universales "
40454036
40464037#: ../Doc/whatsnew/2.5.rst:1342
40474038msgid "What's new"
4048- msgstr ""
4039+ msgstr "Qué hay de nuevo "
0 commit comments