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] some DB-API attributes are undocumented
Type: Stage: resolved
Components: Documentation Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, erlendaasland, lemburg, lukasz.langa, miss-islington
Priority: normal Keywords: patch

Created on 2021-10-25 21:40 by erlendaasland, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 29219 merged erlendaasland, 2021-10-25 21:42
PR 29281 merged miss-islington, 2021-10-28 19:35
PR 29282 merged miss-islington, 2021-10-28 19:36
Messages (5)
msg405004 - (view) Author: Erlend E. Aasland (erlendaasland) * (Python triager) Date: 2021-10-25 21:40
Some DB-API 2.0 attributes are undocumented:

- apilevel
- threadsafety
- paramstyle

These attributes should be documented.


See also:
- bpo-8196
- https://discuss.python.org/t/is-sqlite3-threadsafety-the-same-thing-as-sqlite3-threadsafe-from-the-c-library/11463
msg405236 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-28 19:35
New changeset 88d8a1a340fb09c54d47f354f5fd7d4fbc5f0c78 by Erlend Egeberg Aasland in branch 'main':
bpo-45608: Document missing `sqlite3` DB-API attributes and methods (GH-29219)
https://github.com/python/cpython/commit/88d8a1a340fb09c54d47f354f5fd7d4fbc5f0c78
msg405248 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-28 19:57
New changeset 1d88b2b0a15198843a43f34aba1abc65455d3ba7 by Miss Islington (bot) in branch '3.10':
bpo-45608: Document missing `sqlite3` DB-API attributes and methods (GH-29219) (GH-29281)
https://github.com/python/cpython/commit/1d88b2b0a15198843a43f34aba1abc65455d3ba7
msg405249 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-28 19:57
New changeset 020aa06ec8b0f473a682f4ae74af5833035b054b by Miss Islington (bot) in branch '3.9':
bpo-45608: Document missing `sqlite3` DB-API attributes and methods (GH-29219) (GH-29282)
https://github.com/python/cpython/commit/020aa06ec8b0f473a682f4ae74af5833035b054b
msg405250 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-28 19:57
Thanks, Erlend! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:51adminsetgithub: 89771
2021-10-28 19:57:58lukasz.langasetstatus: open -> closed
resolution: fixed
messages: + msg405250

stage: patch review -> resolved
2021-10-28 19:57:39lukasz.langasetmessages: + msg405249
2021-10-28 19:57:19lukasz.langasetmessages: + msg405248
2021-10-28 19:36:03miss-islingtonsetpull_requests: + pull_request27545
2021-10-28 19:35:58miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request27544
2021-10-28 19:35:54lukasz.langasetnosy: + lukasz.langa
messages: + msg405236
2021-10-25 21:42:17erlendaaslandsetkeywords: + patch
stage: patch review
pull_requests: + pull_request27482
2021-10-25 21:40:00erlendaaslandcreate