@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2020-05-05 12:54+0200\n "
14
- "PO-Revision-Date : 2020-06-13 18:35 -0500\n "
14
+ "PO-Revision-Date : 2020-06-19 18:16 -0500\n "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
@@ -415,6 +415,13 @@ msgid ""
415
415
"and the name of the type in your query are matched in case-insensitive "
416
416
"manner."
417
417
msgstr ""
418
+ "Registra un invocable para convertir un *bytestring* de la base de datos en "
419
+ "un tipo python personalizado. El invocable será invocado por todos los "
420
+ "valores de la base de datos que son del tipo *typename*. Conferir el "
421
+ "parámetro *detect_types* de la función :func:`connect` para el "
422
+ "funcionamiento de la detección de tipo. Se debe notar que *typename* y el "
423
+ "nombre del tipo en la consulta son cotejados insensiblemente a mayúsculas y "
424
+ "minúsculas."
418
425
419
426
#: ../Doc/library/sqlite3.rst:248
420
427
msgid ""
@@ -423,6 +430,10 @@ msgid ""
423
430
"parameter the Python value, and must return a value of the following types: "
424
431
"int, float, str or bytes."
425
432
msgstr ""
433
+ "Registra un invocable para convertir el tipo Python personalizado a uno de "
434
+ "los tipos soportados por SQLite's. El invocable *callable* acepta un único "
435
+ "parámetro de valor Python, y debe regresar un valor de los siguientes tipos: "
436
+ "*int*, *float*, *str* or *bytes*."
426
437
427
438
#: ../Doc/library/sqlite3.rst:256
428
439
msgid ""
@@ -431,11 +442,17 @@ msgid ""
431
442
"syntactically correct, only that there are no unclosed string literals and "
432
443
"the statement is terminated by a semicolon."
433
444
msgstr ""
445
+ "Regresa :const:`True` si la cadena *sql* contiene una o más sentencias SQL "
446
+ "completas terminadas con punto y coma. No se verifica que la sentencia SQL "
447
+ "sea sintácticamente correcta, solo que no existan literales de cadenas no "
448
+ "cerradas y que la sentencia termine por un punto y coma."
434
449
435
450
#: ../Doc/library/sqlite3.rst:261
436
451
msgid ""
437
452
"This can be used to build a shell for SQLite, as in the following example:"
438
453
msgstr ""
454
+ "Esto puede ser usado para construir un *shell* para SQLite, como en el "
455
+ "siguiente ejemplo:"
439
456
440
457
#: ../Doc/library/sqlite3.rst:269
441
458
msgid ""
0 commit comments