From: Berker Peksag Date: Wed, 24 Aug 2016 21:50:24 +0000 (+0300) Subject: Fix typo in Cursor.execute(). X-Git-Tag: v3.6.0b1~560^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d92f892b45e43630665378c2a6b08e1fc279963;p=thirdparty%2FPython%2Fcpython.git Fix typo in Cursor.execute(). --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 80099715ba83..d8fd6e764c7e 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.