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] Confusing typo "transation"
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: John M. Boger, docs@python, erlendaasland, jack__d, miss-islington, pablogsal, zach.ware
Priority: normal Keywords: patch

Created on 2021-07-14 16:53 by John M. Boger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 27145 merged jack__d, 2021-07-14 18:20
PR 27148 merged miss-islington, 2021-07-14 21:40
PR 27149 merged miss-islington, 2021-07-14 21:40
Messages (6)
msg397495 - (view) Author: John M. Boger (John M. Boger) Date: 2021-07-14 16:53
In the documentation for sqlite3.executescript() in python 3.9+, the pseudoword "transation" appears.  I am reasonably sure "transaction" is meant, although it could be "translation".
msg397503 - (view) Author: Jack DeVries (jack__d) * Date: 2021-07-14 18:20
To my understanding, it's supposed to say "transaction".

The source code is here:

https://github.com/python/cpython/blob/a158b20019b50e3ece6e4743ec4e6ae8d818b690/Modules/_sqlite/connection.c#L1434-L1467

I've opened a PR to fix the typo.
msg397509 - (view) Author: miss-islington (miss-islington) Date: 2021-07-14 21:40
New changeset 1ca27f264730abaaa48b3c5e7c6eafb45017b824 by Jack DeVries in branch 'main':
bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145)
https://github.com/python/cpython/commit/1ca27f264730abaaa48b3c5e7c6eafb45017b824
msg397511 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-07-14 22:22
New changeset 3048b8bd2a5c62b9c65ff4cf75399c7e732acdea by Miss Islington (bot) in branch '3.10':
bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145) (GH-27148)
https://github.com/python/cpython/commit/3048b8bd2a5c62b9c65ff4cf75399c7e732acdea
msg397513 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-07-14 22:49
New changeset 421b543311c2eee67482bba894e475a2696423d5 by Miss Islington (bot) in branch '3.9':
bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145) (GH-27149)
https://github.com/python/cpython/commit/421b543311c2eee67482bba894e475a2696423d5
msg397514 - (view) Author: Erlend E. Aasland (erlendaasland) * (Python triager) Date: 2021-07-14 22:51
Thanks John, for the report, and Jack, for the fix!
History
Date User Action Args
2022-04-11 14:59:47adminsetgithub: 88805
2021-07-14 22:51:23erlendaaslandsetstatus: open -> closed

nosy: + erlendaasland
messages: + msg397514

resolution: fixed
stage: patch review -> resolved
2021-07-14 22:49:46pablogsalsetmessages: + msg397513
2021-07-14 22:22:59pablogsalsetnosy: + pablogsal
messages: + msg397511
2021-07-14 21:40:10miss-islingtonsetpull_requests: + pull_request25690
2021-07-14 21:40:10miss-islingtonsetmessages: + msg397509
2021-07-14 21:40:04miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request25689
2021-07-14 18:20:53jack__dsetmessages: + msg397503
2021-07-14 18:20:18jack__dsetkeywords: + patch
nosy: + jack__d

pull_requests: + pull_request25687
stage: patch review
2021-07-14 18:19:46zach.waresetnosy: + zach.ware
2021-07-14 16:53:08John M. Bogercreate