@@ -11,7 +11,7 @@ msgstr ""
1111"Project-Id-Version : Python 3.8\n "
1212"Report-Msgid-Bugs-To : \n "
1313"POT-Creation-Date : 2020-05-05 12:54+0200\n "
14- "PO-Revision-Date : 2020-10-06 19:36 -0500\n "
14+ "PO-Revision-Date : 2020-10-06 21:24 -0500\n "
1515"Language-Team : python-doc-es\n "
1616"MIME-Version : 1.0\n "
1717"Content-Type : text/plain; charset=UTF-8\n "
@@ -1302,7 +1302,7 @@ msgstr ""
13021302"datos y no necesariamente bajo el control del programador, e.g. ocurre una "
13031303"desconexión inesperada, el nombre de la fuente de datos no es encontrado, "
13041304"una transacción no pudo ser procesada, etc. Es una subclase de :exc:"
1305- "`` DatabaseError`."
1305+ "`DatabaseError`."
13061306
13071307#: ../Doc/library/sqlite3.rst:850
13081308msgid ""
@@ -1318,78 +1318,83 @@ msgstr ""
13181318
13191319#: ../Doc/library/sqlite3.rst:859
13201320msgid "SQLite and Python types"
1321- msgstr ""
1321+ msgstr "SQLite y tipos de Python "
13221322
13231323#: ../Doc/library/sqlite3.rst:863
13241324msgid "Introduction"
1325- msgstr ""
1325+ msgstr "Introducción "
13261326
13271327#: ../Doc/library/sqlite3.rst:865
13281328msgid ""
13291329"SQLite natively supports the following types: ``NULL``, ``INTEGER``, "
13301330"``REAL``, ``TEXT``, ``BLOB``."
13311331msgstr ""
1332+ "SQLite soporta nativamente los siguientes tipos: ``NULL``, ``INTEGER``, "
1333+ "``REAL``, ``TEXT``, ``BLOB``."
13321334
13331335#: ../Doc/library/sqlite3.rst:868
13341336msgid ""
13351337"The following Python types can thus be sent to SQLite without any problem:"
13361338msgstr ""
1339+ "Los siguientes tipos de Python se pueden enviar a SQLite sin problema alguno:"
13371340
13381341#: ../Doc/library/sqlite3.rst:871 ../Doc/library/sqlite3.rst:888
13391342msgid "Python type"
1340- msgstr ""
1343+ msgstr "Tipo de Python "
13411344
13421345#: ../Doc/library/sqlite3.rst:871 ../Doc/library/sqlite3.rst:888
13431346msgid "SQLite type"
1344- msgstr ""
1347+ msgstr "Tipo de SQLite "
13451348
13461349#: ../Doc/library/sqlite3.rst:873 ../Doc/library/sqlite3.rst:890
13471350msgid ":const:`None`"
1348- msgstr ""
1351+ msgstr ":const:`None` "
13491352
13501353#: ../Doc/library/sqlite3.rst:873 ../Doc/library/sqlite3.rst:890
13511354msgid "``NULL``"
1352- msgstr ""
1355+ msgstr "``NULL`` "
13531356
13541357#: ../Doc/library/sqlite3.rst:875 ../Doc/library/sqlite3.rst:892
13551358msgid ":class:`int`"
1356- msgstr ""
1359+ msgstr ":class:`int` "
13571360
13581361#: ../Doc/library/sqlite3.rst:875 ../Doc/library/sqlite3.rst:892
13591362msgid "``INTEGER``"
1360- msgstr ""
1363+ msgstr "``INTEGER`` "
13611364
13621365#: ../Doc/library/sqlite3.rst:877 ../Doc/library/sqlite3.rst:894
13631366msgid ":class:`float`"
1364- msgstr ""
1367+ msgstr ":class:`float` "
13651368
13661369#: ../Doc/library/sqlite3.rst:877 ../Doc/library/sqlite3.rst:894
13671370msgid "``REAL``"
1368- msgstr ""
1371+ msgstr "``REAL`` "
13691372
13701373#: ../Doc/library/sqlite3.rst:879
13711374msgid ":class:`str`"
1372- msgstr ""
1375+ msgstr ":class:`str` "
13731376
13741377#: ../Doc/library/sqlite3.rst:879 ../Doc/library/sqlite3.rst:896
13751378msgid "``TEXT``"
1376- msgstr ""
1379+ msgstr "``TEXT`` "
13771380
13781381#: ../Doc/library/sqlite3.rst:881 ../Doc/library/sqlite3.rst:899
13791382msgid ":class:`bytes`"
1380- msgstr ""
1383+ msgstr ":class:`bytes` "
13811384
13821385#: ../Doc/library/sqlite3.rst:881 ../Doc/library/sqlite3.rst:899
13831386msgid "``BLOB``"
1384- msgstr ""
1387+ msgstr "``BLOB`` "
13851388
13861389#: ../Doc/library/sqlite3.rst:885
13871390msgid "This is how SQLite types are converted to Python types by default:"
13881391msgstr ""
1392+ "De esta forma es como los tipos SQLite son convertidos a tipos de Python por "
1393+ "defecto:"
13891394
13901395#: ../Doc/library/sqlite3.rst:896
13911396msgid "depends on :attr:`~Connection.text_factory`, :class:`str` by default"
1392- msgstr ""
1397+ msgstr "depende de :attr:`~Connection.text_factory`, por defecto :class:`str` "
13931398
13941399#: ../Doc/library/sqlite3.rst:902
13951400msgid ""
@@ -1398,6 +1403,10 @@ msgid ""
13981403"adaptation, and you can let the :mod:`sqlite3` module convert SQLite types "
13991404"to different Python types via converters."
14001405msgstr ""
1406+ "El sistema de tipos del módulo :mod:`sqlite3` es extensible en dos formas: "
1407+ "se puede almacenar tipos de Python adicionales en una base de datos SQLite "
1408+ "vía adaptación de objetos, y se puede permitir que el módulo :mod:`sqlite3` "
1409+ "convierta tipos SQLite a diferentes tipos de Python vía convertidores."
14011410
14021411#: ../Doc/library/sqlite3.rst:909
14031412msgid "Using adapters to store additional Python types in SQLite databases"
0 commit comments