@@ -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-10-06 09:54 -0500\n "
14
+ "PO-Revision-Date : 2020-10-06 12:22 -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 "
@@ -1090,7 +1090,7 @@ msgid ""
1090
1090
"`ProgrammingError` exception will be raised if any operation is attempted "
1091
1091
"with the cursor."
1092
1092
msgstr ""
1093
- "El cursor no será usable de este punto en adelante; una exepción :exc:"
1093
+ "El cursor no será usable de este punto en adelante; una excepción :exc:"
1094
1094
"`ProgrammingError` será lanzada si se intenta cualquier operación con el "
1095
1095
"cursor."
1096
1096
@@ -1197,48 +1197,58 @@ msgstr ""
1197
1197
"Este atributo de solo lectura provee la :class:`Connection` de la base de "
1198
1198
"datos SQLite usada por el objeto :class:`Cursor`. Un objeto :class:`Cursor` "
1199
1199
"creado por la llamada de :meth:`con.cursor() <Connection.cursor>` tendrá un "
1200
- "atributo :attr:`connection` que se fiere a *con*::"
1200
+ "atributo :attr:`connection` que se refiere a *con*::"
1201
1201
1202
1202
#: ../Doc/library/sqlite3.rst:749
1203
1203
msgid "Row Objects"
1204
- msgstr ""
1204
+ msgstr "Objetos *Row* "
1205
1205
1206
1206
#: ../Doc/library/sqlite3.rst:753
1207
1207
msgid ""
1208
1208
"A :class:`Row` instance serves as a highly optimized :attr:`~Connection."
1209
1209
"row_factory` for :class:`Connection` objects. It tries to mimic a tuple in "
1210
1210
"most of its features."
1211
1211
msgstr ""
1212
+ "Una instancia :class:`Row` sirve como una altamente optimizada :attr:"
1213
+ "`~Connection.row_factory` para objetos :class:`Connection`. Esta trata de "
1214
+ "imitar una tupla en su mayoría de características."
1212
1215
1213
1216
#: ../Doc/library/sqlite3.rst:757
1214
1217
msgid ""
1215
1218
"It supports mapping access by column name and index, iteration, "
1216
1219
"representation, equality testing and :func:`len`."
1217
1220
msgstr ""
1221
+ "Soporta acceso mapeado por nombre de columna e índice, iteración, "
1222
+ "representación, pruebas de igualdad y :func:`len`."
1218
1223
1219
1224
#: ../Doc/library/sqlite3.rst:760
1220
1225
msgid ""
1221
1226
"If two :class:`Row` objects have exactly the same columns and their members "
1222
1227
"are equal, they compare equal."
1223
1228
msgstr ""
1229
+ "Si dos objetos :class:`Row` tienen exactamente las mismas columnas y sus "
1230
+ "miembros son iguales, entonces se comparan a igual."
1224
1231
1225
1232
#: ../Doc/library/sqlite3.rst:765
1226
1233
msgid ""
1227
1234
"This method returns a list of column names. Immediately after a query, it is "
1228
1235
"the first member of each tuple in :attr:`Cursor.description`."
1229
1236
msgstr ""
1237
+ "Este método retorna una lista con los nombre de columnas. Inmediatamente "
1238
+ "después de una consulta, es el primer miembro de cada tupla en :attr:`Cursor."
1239
+ "description`."
1230
1240
1231
1241
#: ../Doc/library/sqlite3.rst:768
1232
1242
msgid "Added support of slicing."
1233
- msgstr ""
1243
+ msgstr "Agrega soporte de segmentación. "
1234
1244
1235
1245
#: ../Doc/library/sqlite3.rst:771
1236
1246
msgid "Let's assume we initialize a table as in the example given above::"
1237
- msgstr ""
1247
+ msgstr "Vamos a asumir que se inicializa una tabla como en el ejemplo dado:: "
1238
1248
1239
1249
#: ../Doc/library/sqlite3.rst:783
1240
1250
msgid "Now we plug :class:`Row` in::"
1241
- msgstr ""
1251
+ msgstr "Ahora conectamos :class:`Row` en:: "
1242
1252
1243
1253
#: ../Doc/library/sqlite3.rst:815
1244
1254
msgid "Exceptions"
0 commit comments