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: Missing documentation for sqlite3.OperationalError
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Leonardo Taglialegne, ZackerySpytz, berker.peksag, docs@python, miss-islington
Priority: normal Keywords: patch

Created on 2017-09-07 08:14 by Leonardo Taglialegne, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7677 merged ZackerySpytz, 2018-06-13 05:54
PR 7678 merged miss-islington, 2018-06-13 09:10
PR 7679 merged miss-islington, 2018-06-13 09:10
Messages (5)
msg301575 - (view) Author: Leonardo Taglialegne (Leonardo Taglialegne) Date: 2017-09-07 08:14
sqlite3.OperationalError has no documentation whatsoever in docs.python.org
msg301577 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2017-09-07 08:44
Thank you for the report. I think we can add a simplified version of the OperationalError documentation in PEP 249:

    Exception raised for errors that are related to the database's
    operation and not necessarily under the control of the programmer,
    e.g. an unexpected disconnect occurs, the data source name is not
    found, a transaction could not be processed, a memory allocation
    error occurred during processing, etc. It must be a subclass of
    DatabaseError.

Reference: https://www.python.org/dev/peps/pep-0249/#operationalerror
msg319439 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2018-06-13 09:09
New changeset 71ede00f140fa6b67a8ac17df68b80079efa8dc2 by Berker Peksag (Zackery Spytz) in branch 'master':
bpo-31378: Document sqlite3.OperationalError exception (GH-7677)
https://github.com/python/cpython/commit/71ede00f140fa6b67a8ac17df68b80079efa8dc2
msg319440 - (view) Author: miss-islington (miss-islington) Date: 2018-06-13 09:28
New changeset eea4f149717cc83038641ca53f6f74be785de6f1 by Miss Islington (bot) in branch '3.7':
bpo-31378: Document sqlite3.OperationalError exception (GH-7677)
https://github.com/python/cpython/commit/eea4f149717cc83038641ca53f6f74be785de6f1
msg319441 - (view) Author: miss-islington (miss-islington) Date: 2018-06-13 09:30
New changeset 961332dfd3dbff4c63ed4d9f8b5de937aa63475b by Miss Islington (bot) in branch '3.6':
bpo-31378: Document sqlite3.OperationalError exception (GH-7677)
https://github.com/python/cpython/commit/961332dfd3dbff4c63ed4d9f8b5de937aa63475b
History
Date User Action Args
2022-04-11 14:58:52adminsetgithub: 75559
2018-06-13 09:30:47berker.peksagsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-06-13 09:30:11miss-islingtonsetmessages: + msg319441
2018-06-13 09:28:51miss-islingtonsetnosy: + miss-islington
messages: + msg319440
2018-06-13 09:10:42miss-islingtonsetpull_requests: + pull_request7291
2018-06-13 09:10:05miss-islingtonsetpull_requests: + pull_request7290
2018-06-13 09:09:40berker.peksagsetmessages: + msg319439
2018-06-13 05:56:28ZackerySpytzsetnosy: + ZackerySpytz

versions: + Python 3.8
2018-06-13 05:54:47ZackerySpytzsetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request7289
2017-09-07 08:44:37berker.peksagsetversions: - Python 3.3, Python 3.4, Python 3.5
nosy: + berker.peksag

messages: + msg301577

stage: needs patch
2017-09-07 08:14:59Leonardo Taglialegnecreate