@@ -11,22 +11,22 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\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-08 -01 20:18+0200 \n "
14
+ "PO-Revision-Date : 2022-11 -01 11:48+0100 \n "
15
15
"Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
16
- "Language : es\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
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.2\n "
23
24
24
25
#: ../Doc/c-api/bytes.rst:6
25
26
msgid "Bytes Objects"
26
27
msgstr "Objetos Bytes"
27
28
28
29
#: ../Doc/c-api/bytes.rst:8
29
- #, fuzzy
30
30
msgid ""
31
31
"These functions raise :exc:`TypeError` when expecting a bytes parameter and "
32
32
"called with a non-bytes parameter."
@@ -197,7 +197,7 @@ msgstr ":attr:`%zd`"
197
197
198
198
#: ../Doc/c-api/bytes.rst:87
199
199
msgid ":c:type:`\\ Py_ssize_t`"
200
- msgstr ""
200
+ msgstr ":c:type:` \\ Py_ssize_t` "
201
201
202
202
#: ../Doc/c-api/bytes.rst:87
203
203
msgid "Equivalent to ``printf(\" %zd\" )``. [1]_"
@@ -258,9 +258,9 @@ msgstr "const void\\*"
258
258
259
259
#: ../Doc/c-api/bytes.rst:102
260
260
msgid ""
261
- "The hex representation of a C pointer. Mostly equivalent to "
262
- "``printf( \" %p \" )`` except that it is guaranteed to start with the literal "
263
- "``0x`` regardless of what the platform's ``printf`` yields."
261
+ "The hex representation of a C pointer. Mostly equivalent to ``printf( \" %p "
262
+ "\" )`` except that it is guaranteed to start with the literal ``0x`` "
263
+ "regardless of what the platform's ``printf`` yields."
264
264
msgstr ""
265
265
"La representación hexadecimal de un puntero en C. Principalmente equivalente "
266
266
"a ``printf(\" %p\" )`` excepto que se garantiza que comience con el literal "
@@ -304,7 +304,6 @@ msgid "Return the length of the bytes in bytes object *o*."
304
304
msgstr "Retorna la longitud de los bytes en el objeto bytes *o*."
305
305
306
306
#: ../Doc/c-api/bytes.rst:137
307
- #, fuzzy
308
307
msgid "Similar to :c:func:`PyBytes_Size`, but without error checking."
309
308
msgstr ""
310
309
"Forma macro de :c:func:`PyBytes_Size` pero sin verificación de errores."
@@ -320,15 +319,14 @@ msgid ""
320
319
"`PyBytes_AsString` returns ``NULL`` and raises :exc:`TypeError`."
321
320
msgstr ""
322
321
"Retorna un puntero al contenido de *o*. El puntero se refiere al búfer "
323
- "interno de *o*, que consiste en bytes ``len(o) + 1``. El último byte en el "
322
+ "interno de *o*, que consiste en ``len(o) + 1`` bytes . El último byte en el "
324
323
"búfer siempre es nulo, independientemente de si hay otros bytes nulos. Los "
325
324
"datos no deben modificarse de ninguna manera, a menos que el objeto se haya "
326
325
"creado usando ``PyBytes_FromStringAndSize(NULL, size)``. No debe ser "
327
326
"desasignado. Si *o* no es un objeto de bytes en absoluto, :c:func:"
328
327
"`PyBytes_AsString` retorna ``NULL`` y lanza un :exc:`TypeError`."
329
328
330
329
#: ../Doc/c-api/bytes.rst:154
331
- #, fuzzy
332
330
msgid "Similar to :c:func:`PyBytes_AsString`, but without error checking."
333
331
msgstr ""
334
332
"Forma macro de :c:func:`PyBytes_AsString` pero sin verificación de errores."
@@ -348,7 +346,7 @@ msgid ""
348
346
"raised."
349
347
msgstr ""
350
348
"Si *length* es ``NULL``, el objeto bytes no puede contener bytes nulos "
351
- "incrustados; si lo hace , la función retorna ``-1`` y se lanza un :exc:"
349
+ "incrustados; en caso contrario , la función retorna ``-1`` y se lanza un :exc:"
352
350
"`ValueError`."
353
351
354
352
#: ../Doc/c-api/bytes.rst:166
@@ -361,8 +359,8 @@ msgid ""
361
359
"returns ``-1`` and raises :exc:`TypeError`."
362
360
msgstr ""
363
361
"El búfer se refiere a un búfer interno de *obj*, que incluye un byte nulo "
364
- "adicional al final (sin contar en *length*). Los datos no deben modificarse "
365
- "de ninguna manera, a menos que el objeto se haya creado usando "
362
+ "adicional al final (no está considerado en *length*). Los datos no deben "
363
+ "modificarse de ninguna manera, a menos que el objeto se haya creado usando "
366
364
"``PyBytes_FromStringAndSize(NULL, size)``. No debe ser desasignado. Si *obj* "
367
365
"no es un objeto bytes en absoluto, :c:func:`PyBytes_AsStringAndSize` retorna "
368
366
"``-1`` y lanza :exc:`TypeError`."
@@ -387,7 +385,7 @@ msgstr ""
387
385
"*newpart* agregado a *bytes*; la persona que llama poseerá la nueva "
388
386
"referencia. La referencia al valor anterior de *bytes* será robada. Si no se "
389
387
"puede crear el nuevo objeto, la referencia anterior a *bytes* se seguirá "
390
- "descartando y el valor de *\\ *bytes* se establecerá en ``NULL``; Se "
388
+ "descartando y el valor de *\\ *bytes* se establecerá en ``NULL``; se "
391
389
"establecerá la excepción apropiada."
392
390
393
391
#: ../Doc/c-api/bytes.rst:189
@@ -409,8 +407,8 @@ msgid ""
409
407
"address of an existing bytes object as an lvalue (it may be written into), "
410
408
"and the new size desired. On success, *\\ *bytes* holds the resized bytes "
411
409
"object and ``0`` is returned; the address in *\\ *bytes* may differ from its "
412
- "input value. If the reallocation fails, the original bytes object at "
413
- "* \\ *bytes* is deallocated, *\\ *bytes* is set to ``NULL``, :exc:`MemoryError` "
410
+ "input value. If the reallocation fails, the original bytes object at * "
411
+ "\\ *bytes* is deallocated, *\\ *bytes* is set to ``NULL``, :exc:`MemoryError` "
414
412
"is set, and ``-1`` is returned."
415
413
msgstr ""
416
414
"Una forma de cambiar el tamaño de un objeto bytes aunque sea \" inmutable\" . "
@@ -419,10 +417,10 @@ msgstr ""
419
417
"esta función si el recuento en el objeto bytes de entrada no es uno. Pasa la "
420
418
"dirección de un objeto de bytes existente como un *lvalue* (puede escribirse "
421
419
"en él) y el nuevo tamaño deseado. En caso de éxito, *\\ *bytes* retiene el "
422
- "objeto de bytes redimensionados y se retorna ``0``; la dirección en "
423
- "* \\ *bytes* puede diferir de su valor de entrada. Si la reasignación falla, "
424
- "el objeto de bytes original en *\\ *bytes* se desasigna, *\\ *bytes* se "
425
- "establece en ``NULL``, :exc:`MemoryError` se establece y se retorna ``-1`` ."
420
+ "objeto de bytes redimensionados y se retorna ``0``; la dirección en * "
421
+ "\\ *bytes* puede diferir de su valor de entrada. Si la reasignación falla, el "
422
+ "objeto de bytes original en *\\ *bytes* se desasigna, *\\ *bytes* se establece "
423
+ "en ``NULL``, :exc:`MemoryError` se establece y se retorna ``-1`` ."
426
424
427
425
#~ msgid "Py_ssize_t"
428
426
#~ msgstr "Py_ssize_t"
0 commit comments