]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 78176 via svnmerge from
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 14 Feb 2010 02:52:55 +0000 (02:52 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 14 Feb 2010 02:52:55 +0000 (02:52 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78176 | ezio.melotti | 2010-02-14 04:50:23 +0200 (Sun, 14 Feb 2010) | 1 line

  #7921: fix links. Patch by Brian Curtin.
........

Doc/library/sqlite3.rst

index d437028baba81f2d04e09f7690bb606caf5239ab..d012c94ae19c850388fc771f44400e6a271c8b42 100644 (file)
@@ -258,21 +258,22 @@ Connection Objects
 .. method:: Connection.execute(sql, [parameters])
 
    This is a nonstandard shortcut that creates an intermediate cursor object by
-   calling the cursor method, then calls the cursor's :meth:`execute` method with
-   the parameters given.
+   calling the cursor method, then calls the cursor's
+   :meth:`execute<Cursor.execute>` method with the parameters given.
 
 
 .. method:: Connection.executemany(sql, [parameters])
 
    This is a nonstandard shortcut that creates an intermediate cursor object by
-   calling the cursor method, then calls the cursor's :meth:`executemany` method
-   with the parameters given.
+   calling the cursor method, then calls the cursor's
+   :meth:`executemany<Cursor.executemany>` method with the parameters given.
 
 .. method:: Connection.executescript(sql_script)
 
    This is a nonstandard shortcut that creates an intermediate cursor object by
-   calling the cursor method, then calls the cursor's :meth:`executescript` method
-   with the parameters given.
+   calling the cursor method, then calls the cursor's
+   :meth:`executescript<Cursor.executescript>` method with the parameters
+   given.
 
 
 .. method:: Connection.create_function(name, num_params, func)