Skip to content

Commit 48cb6a1

Browse files
committed
94%: Usando métodos atajo
1 parent 30bec25 commit 48cb6a1

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

library/sqlite3.po

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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-16 19:36-0500\n"
14+
"PO-Revision-Date: 2020-10-16 20:07-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1520,15 +1520,15 @@ msgid ""
15201520
"First, we'll define a converter function that accepts the string as a "
15211521
"parameter and constructs a :class:`Point` object from it."
15221522
msgstr ""
1523-
"Primero, se define una función convertidora que acepta la cadena de texto "
1523+
"Primero, se define una función de conversión que acepta la cadena de texto "
15241524
"como un parámetro y construye un objeto :class:`Point` de ahí."
15251525

15261526
#: ../Doc/library/sqlite3.rst:971
15271527
msgid ""
15281528
"Converter functions **always** get called with a :class:`bytes` object, no "
15291529
"matter under which data type you sent the value to SQLite."
15301530
msgstr ""
1531-
"Las funciones convertidoras **always** se llamaran con un objeto :class:"
1531+
"Las funciones de conversión **always** se llamaran con un objeto :class:"
15321532
"`bytes`, no importa bajo que tipo de dato se envío el valor a SQLite."
15331533

15341534
#: ../Doc/library/sqlite3.rst:980
@@ -1685,11 +1685,11 @@ msgstr ""
16851685

16861686
#: ../Doc/library/sqlite3.rst:1054
16871687
msgid "Using :mod:`sqlite3` efficiently"
1688-
msgstr ""
1688+
msgstr "Usando :mod:`sqlite3` eficientemente"
16891689

16901690
#: ../Doc/library/sqlite3.rst:1058
16911691
msgid "Using shortcut methods"
1692-
msgstr ""
1692+
msgstr "Usando métodos atajo"
16931693

16941694
#: ../Doc/library/sqlite3.rst:1060
16951695
msgid ""
@@ -1702,6 +1702,12 @@ msgid ""
17021702
"iterate over it directly using only a single call on the :class:`Connection` "
17031703
"object."
17041704
msgstr ""
1705+
"Usando los métodos no estándar :meth:`execute`, :meth:`executemany` and :"
1706+
"meth:`executescript` del objeto :class:`Connection`, el código puede ser "
1707+
"escrito más consistentemente porqué no se tiene que crear explícitamente los "
1708+
"(a menudo superfluos) objetos :class:`Cursor`. De esta forma, se puede "
1709+
"ejecutar una sentencia ``SELECT`` e iterar directamente sobre él, solamente "
1710+
"usando una única llamada al objeto :class:`Connection`."
17051711

17061712
#: ../Doc/library/sqlite3.rst:1072
17071713
msgid "Accessing columns by name instead of by index"

0 commit comments

Comments
 (0)