From: Ezio Melotti Date: Sun, 14 Feb 2010 02:50:23 +0000 (+0000) Subject: #7921: fix links. Patch by Brian Curtin. X-Git-Tag: v2.7a4~192 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a68f7b8a0d439a0963c5de4205e9519ad95ff5f1;p=thirdparty%2FPython%2Fcpython.git #7921: fix links. Patch by Brian Curtin. --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 3f5161a0b68f..dd56a8aeb98f 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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` 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` 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` method with the parameters + given. .. method:: Connection.create_function(name, num_params, func)