diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-08-24 21:50:24 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-08-24 21:50:24 (GMT) |
commit | 7d92f892b45e43630665378c2a6b08e1fc279963 (patch) | |
tree | c2043b943a1a75e27c661185a8f27d6c63f286fa /Doc | |
parent | ed789f9cf9586d94e85115bb516a2ab6b9a2f668 (diff) | |
download | cpython-7d92f892b45e43630665378c2a6b08e1fc279963.zip cpython-7d92f892b45e43630665378c2a6b08e1fc279963.tar.gz cpython-7d92f892b45e43630665378c2a6b08e1fc279963.tar.bz2 |
Fix typo in Cursor.execute().
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 8009971..d8fd6e7 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -542,7 +542,7 @@ Cursor Objects .. literalinclude:: ../includes/sqlite3/execute_1.py :meth:`execute` will only execute a single SQL statement. If you try to execute - more than one statement with it, it will raise an :exc:`.Warning`. Use + more than one statement with it, it will raise a :exc:`.Warning`. Use :meth:`executescript` if you want to execute multiple SQL statements with one call. |