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: [sqlite3] remove unused connection argument from pysqlite_step()
Type: enhancement Stage: resolved
Components: Extension Modules Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: erlendaasland Nosy List: erlendaasland
Priority: low Keywords: patch

Created on 2021-06-04 20:14 by erlendaasland, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 26535 merged erlendaasland, 2021-06-04 20:16
Messages (2)
msg395117 - (view) Author: Erlend E. Aasland (erlendaasland) * (Python triager) Date: 2021-06-04 20:14
The code that used the connection argument was removed one year before pysqlite was included in CPython, as far as I can see. It can safely be removed.

See also:
https://github.com/ghaering/pysqlite/commit/5a009ed6fb2e90b952438f5786f93cd1e8ac8722
msg395118 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-06-04 20:42
New changeset 7459208de194db6222d7e3aa301c2b831dbe566d by Erlend Egeberg Aasland in branch 'main':
bpo-44315: Remove unused connection argument from pysqlite_step() (GH-26535)
https://github.com/python/cpython/commit/7459208de194db6222d7e3aa301c2b831dbe566d
History
Date User Action Args
2022-04-11 14:59:46adminsetgithub: 88481
2021-06-04 20:42:38pablogsalsetstatus: open -> closed
nosy: - pablogsal

resolution: fixed
stage: patch review -> resolved
2021-06-04 20:42:29pablogsalsetnosy: + pablogsal
messages: + msg395118
2021-06-04 20:16:25erlendaaslandsetkeywords: + patch
stage: patch review
pull_requests: + pull_request25126
2021-06-04 20:14:46erlendaaslandcreate