This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Some sqlite3 Connection methods point to themselves
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: brian.curtin, ezio.melotti, georg.brandl, scop
Priority: low Keywords: needs review, patch

Created on 2010-02-12 22:19 by scop, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue7921.diff brian.curtin, 2010-02-13 04:31 patch against trunk
Messages (3)
msg99293 - (view) Author: Ville Skyttä (scop) * Date: 2010-02-12 22:19
http://docs.python.org/dev/library/sqlite3.html#sqlite3.Connection.executemany

The executemany() link in "... then calls the cursor’s executemany() method ..." points to Connection.executemany (itself), it should point to Cursor.executemany instead.
msg99308 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2010-02-13 04:31
Here's a patch which corrects executemany, along with execute and executescript. An explicit title is used, with a reference to the underlying Cursor methods.
msg99334 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2010-02-14 02:56
Fixed in r78176 (trunk), r78177 (release26-maint), r78178 (py3k) and r78179 (release31-maint), thanks for the report and the patch!
History
Date User Action Args
2022-04-11 14:56:57adminsetgithub: 52169
2010-02-14 02:56:53ezio.melottisetstatus: open -> closed

assignee: georg.brandl -> ezio.melotti

nosy: + ezio.melotti
messages: + msg99334
resolution: fixed
stage: patch review -> resolved
2010-02-13 04:31:57brian.curtinsetfiles: + issue7921.diff


keywords: + patch, needs review
stage: patch review
title: executemany() link in Connection.executemany should point to Cursor.executemany -> Some sqlite3 Connection methods point to themselves
nosy: + brian.curtin
versions: + Python 2.6, Python 3.1, Python 2.7
messages: + msg99308
priority: low
type: behavior
2010-02-12 22:19:24scopcreate