[Python-checkins] cpython (3.5): Fix typo in Cursor.execute().

berker.peksag python-checkins at python.org
Wed Aug 24 17:49:53 EDT 2016


https://hg.python.org/cpython/rev/78c039440d6b
changeset:   102893:78c039440d6b
branch:      3.5
parent:      102891:1dbd1a9a6a9c
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Thu Aug 25 00:50:24 2016 +0300
summary:
  Fix typo in Cursor.execute().

files:
  Doc/library/sqlite3.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -542,7 +542,7 @@
       .. 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.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list