diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-08-24 21:50:59 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-08-24 21:50:59 (GMT) |
commit | 12f611a47aadf0dc74f3a2c50a610b6cc2c668dc (patch) | |
tree | 7c305db48808feeaedd0fab8ab032d7e009098f0 | |
parent | c7876464e7b3ea0fb118afa1ec13d1849f7fa42d (diff) | |
parent | 7d92f892b45e43630665378c2a6b08e1fc279963 (diff) | |
download | cpython-12f611a47aadf0dc74f3a2c50a610b6cc2c668dc.zip cpython-12f611a47aadf0dc74f3a2c50a610b6cc2c668dc.tar.gz cpython-12f611a47aadf0dc74f3a2c50a610b6cc2c668dc.tar.bz2 |
Merge from 3.5
-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 e53efda..1498ead 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. |