Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdafef1b

Browse files
Translating c-api/memory (#2087)
Closes#2059
1 parent5bb6e98 commitdafef1b

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

‎c-api/memory.po

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@
88
#
99
msgid ""
1010
msgstr ""
11-
"Project-Id-Version:Python 3.8\n"
11+
"Project-Id-Version:Python 3.11\n"
1212
"Report-Msgid-Bugs-To:\n"
1313
"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"
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"
20-
"Content-Type:text/plain; charset=utf-8\n"
19+
"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.10.3\n"
23+
"X-Generator:Poedit 3.1.1\n"
2324

2425
#:../Doc/c-api/memory.rst:8
2526
msgid"Memory Management"
@@ -120,7 +121,6 @@ msgstr ""
120121
"solo participa en la asignación del objeto de bytes retornado como resultado."
121122

122123
#:../Doc/c-api/memory.rst:72
123-
#,fuzzy
124124
msgid""
125125
"In most situations, however, it is recommended to allocate memory from the "
126126
"Python heap specifically because the latter is under control of the Python "
@@ -280,12 +280,11 @@ msgstr ""
280280

281281
#:../Doc/c-api/memory.rst:144../Doc/c-api/memory.rst:215
282282
#:../Doc/c-api/memory.rst:323
283-
#,fuzzy
284283
msgid""
285284
"Allocates *n* bytes and returns a pointer of type :c:expr:`void*` to the "
286285
"allocated memory, or ``NULL`` if the request fails."
287286
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 "
289288
"asignada, o ``NULL`` si la solicitud falla."
290289

291290
#:../Doc/c-api/memory.rst:147
@@ -300,14 +299,13 @@ msgstr ""
300299

301300
#:../Doc/c-api/memory.rst:154../Doc/c-api/memory.rst:225
302301
#:../Doc/c-api/memory.rst:333
303-
#,fuzzy
304302
msgid""
305303
"Allocates *nelem* elements each whose size in bytes is *elsize* and returns "
306304
"a pointer of type :c:expr:`void*` to the allocated memory, or ``NULL`` if "
307305
"the request fails. The memory is initialized to zeros."
308306
msgstr""
309307
"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 "
311309
"solicitud falla. La memoria se inicializa a ceros."
312310

313311
#:../Doc/c-api/memory.rst:158
@@ -480,18 +478,16 @@ msgstr ""
480478
"Tenga en cuenta que *TYPE* se refiere a cualquier tipo de C."
481479

482480
#:../Doc/c-api/memory.rst:267
483-
#,fuzzy
484481
msgid""
485482
"Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes "
486483
"of memory. Returns a pointer cast to :c:expr:`TYPE*`. The memory will not "
487484
"have been initialized in any way."
488485
msgstr""
489486
"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 "
491488
"no se habrá inicializado de ninguna manera."
492489

493490
#:../Doc/c-api/memory.rst:274
494-
#,fuzzy
495491
msgid""
496492
"Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n * "
497493
"sizeof(TYPE))`` bytes. Returns a pointer cast to :c:expr:`TYPE*`. On "
@@ -500,7 +496,7 @@ msgid ""
500496
msgstr""
501497
"Igual que :c:func:`PyMem_Realloc`, pero el bloque de memoria cambia de "
502498
"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, "
504500
"o ``NULL`` en caso de falla."
505501

506502
#:../Doc/c-api/memory.rst:279
@@ -557,7 +553,6 @@ msgid "Object allocators"
557553
msgstr"Asignadores de objetos"
558554

559555
#:../Doc/c-api/memory.rst:308
560-
#,fuzzy
561556
msgid""
562557
"There is no guarantee that the memory returned by these allocators can be "
563558
"successfully cast to a Python object when intercepting the allocating "
@@ -755,7 +750,6 @@ msgid "Customize Memory Allocators"
755750
msgstr"Personalizar asignadores de memoria"
756751

757752
#:../Doc/c-api/memory.rst:405
758-
#,fuzzy
759753
msgid""
760754
"Structure used to describe a memory block allocator. The structure has the "
761755
"following fields:"
@@ -917,13 +911,15 @@ msgid ""
917911
"See also :c:member:`PyPreConfig.allocator` and :ref:`Preinitialize Python "
918912
"with PyPreConfig <c-preinit>`."
919913
msgstr""
914+
"Vea también :c:member:`PyPreConfig.allocator` y :ref:`Preinicialización de "
915+
"Python con PyPreConfig <c-preinit>`."
920916

921917
#:../Doc/c-api/memory.rst:484
922918
msgid""
923919
"Setup :ref:`debug hooks in the Python memory allocators <pymem-debug-hooks>` "
924920
"to detect memory errors."
925921
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 "
927923
"Python <pymem-debug-hooks>` para detectar errores de memoria."
928924

929925
#:../Doc/c-api/memory.rst:491

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp