8
8
#
9
9
msgid ""
10
10
msgstr ""
11
- "Project-Id-Version : Python 3.8 \n "
11
+ "Project-Id-Version : Python 3.11 \n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2022-10-25 19:47+0200\n "
14
- "PO-Revision-Date : 2021-10-22 08:58-0300\n "
15
- "Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
16
- "Language : es\n "
14
+ "PO-Revision-Date : 2022-10-27 03:12-0300\n "
15
+ "Last-Translator : Marco Richetta <marcorichetta@gmail.com>\n "
17
16
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17
+ "Language : es \n "
19
18
"MIME-Version : 1.0\n "
20
- "Content-Type : text/plain; charset=utf -8\n "
19
+ "Content-Type : text/plain; charset=UTF -8\n "
21
20
"Content-Transfer-Encoding : 8bit\n "
21
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
22
22
"Generated-By : Babel 2.10.3\n "
23
+ "X-Generator : Poedit 3.1.1\n "
23
24
24
25
#: ../Doc/c-api/memory.rst:8
25
26
msgid "Memory Management"
@@ -120,7 +121,6 @@ msgstr ""
120
121
"solo participa en la asignación del objeto de bytes retornado como resultado."
121
122
122
123
#: ../Doc/c-api/memory.rst:72
123
- #, fuzzy
124
124
msgid ""
125
125
"In most situations, however, it is recommended to allocate memory from the "
126
126
"Python heap specifically because the latter is under control of the Python "
@@ -280,12 +280,11 @@ msgstr ""
280
280
281
281
#: ../Doc/c-api/memory.rst:144 ../Doc/c-api/memory.rst:215
282
282
#: ../Doc/c-api/memory.rst:323
283
- #, fuzzy
284
283
msgid ""
285
284
"Allocates *n* bytes and returns a pointer of type :c:expr:`void*` to the "
286
285
"allocated memory, or ``NULL`` if the request fails."
287
286
msgstr ""
288
- "Asigna *n* bytes y retorna un puntero de tipo :c:type :`void*` a la memoria "
287
+ "Asigna *n* bytes y retorna un puntero de tipo :c:expr :`void*` a la memoria "
289
288
"asignada, o ``NULL`` si la solicitud falla."
290
289
291
290
#: ../Doc/c-api/memory.rst:147
@@ -300,14 +299,13 @@ msgstr ""
300
299
301
300
#: ../Doc/c-api/memory.rst:154 ../Doc/c-api/memory.rst:225
302
301
#: ../Doc/c-api/memory.rst:333
303
- #, fuzzy
304
302
msgid ""
305
303
"Allocates *nelem* elements each whose size in bytes is *elsize* and returns "
306
304
"a pointer of type :c:expr:`void*` to the allocated memory, or ``NULL`` if "
307
305
"the request fails. The memory is initialized to zeros."
308
306
msgstr ""
309
307
"Asigna *nelem* elementos cada uno cuyo tamaño en bytes es *elsize* y retorna "
310
- "un puntero de tipo :c:type :`void*` a la memoria asignada, o ``NULL`` si la "
308
+ "un puntero de tipo :c:expr :`void*` a la memoria asignada, o ``NULL`` si la "
311
309
"solicitud falla. La memoria se inicializa a ceros."
312
310
313
311
#: ../Doc/c-api/memory.rst:158
@@ -480,18 +478,16 @@ msgstr ""
480
478
"Tenga en cuenta que *TYPE* se refiere a cualquier tipo de C."
481
479
482
480
#: ../Doc/c-api/memory.rst:267
483
- #, fuzzy
484
481
msgid ""
485
482
"Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes "
486
483
"of memory. Returns a pointer cast to :c:expr:`TYPE*`. The memory will not "
487
484
"have been initialized in any way."
488
485
msgstr ""
489
486
"Igual que :c:func:`PyMem_Malloc`, pero asigna ``(n * sizeof(TYPE))`` bytes "
490
- "de memoria. Retorna una conversión de puntero a :c:type :`TYPE*`. La memoria "
487
+ "de memoria. Retorna una conversión de puntero a :c:expr :`TYPE*`. La memoria "
491
488
"no se habrá inicializado de ninguna manera."
492
489
493
490
#: ../Doc/c-api/memory.rst:274
494
- #, fuzzy
495
491
msgid ""
496
492
"Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n * "
497
493
"sizeof(TYPE))`` bytes. Returns a pointer cast to :c:expr:`TYPE*`. On "
@@ -500,7 +496,7 @@ msgid ""
500
496
msgstr ""
501
497
"Igual que :c:func:`PyMem_Realloc`, pero el bloque de memoria cambia de "
502
498
"tamaño a ``(n * sizeof(TYPE))`` bytes. Retorna una conversión de puntero a :"
503
- "c:type :`TYPE*`. Al retornar, *p* será un puntero a la nueva área de memoria, "
499
+ "c:expr :`TYPE*`. Al retornar, *p* será un puntero a la nueva área de memoria, "
504
500
"o ``NULL`` en caso de falla."
505
501
506
502
#: ../Doc/c-api/memory.rst:279
@@ -557,7 +553,6 @@ msgid "Object allocators"
557
553
msgstr "Asignadores de objetos"
558
554
559
555
#: ../Doc/c-api/memory.rst:308
560
- #, fuzzy
561
556
msgid ""
562
557
"There is no guarantee that the memory returned by these allocators can be "
563
558
"successfully cast to a Python object when intercepting the allocating "
@@ -755,7 +750,6 @@ msgid "Customize Memory Allocators"
755
750
msgstr "Personalizar asignadores de memoria"
756
751
757
752
#: ../Doc/c-api/memory.rst:405
758
- #, fuzzy
759
753
msgid ""
760
754
"Structure used to describe a memory block allocator. The structure has the "
761
755
"following fields:"
@@ -917,13 +911,15 @@ msgid ""
917
911
"See also :c:member:`PyPreConfig.allocator` and :ref:`Preinitialize Python "
918
912
"with PyPreConfig <c-preinit>`."
919
913
msgstr ""
914
+ "Vea también :c:member:`PyPreConfig.allocator` y :ref:`Preinicialización de "
915
+ "Python con PyPreConfig <c-preinit>`."
920
916
921
917
#: ../Doc/c-api/memory.rst:484
922
918
msgid ""
923
919
"Setup :ref:`debug hooks in the Python memory allocators <pymem-debug-hooks>` "
924
920
"to detect memory errors."
925
921
msgstr ""
926
- "Configuración :ref:`enlaces de depuración en los asignadores de memoria de "
922
+ "Configurar :ref:`enlaces de depuración en los asignadores de memoria de "
927
923
"Python <pymem-debug-hooks>` para detectar errores de memoria."
928
924
929
925
#: ../Doc/c-api/memory.rst:491
0 commit comments