[issue43083] Minor errors related to error handling in _sqlite3 module

2021-01-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue43083] Minor errors related to error handling in _sqlite3 module

2021-01-31 Thread miss-islington
miss-islington added the comment: New changeset 8a833a6f94d8c2baa6aa38abd9fc699881a5b0e1 by Miss Islington (bot) in branch '3.9': bpo-43083: Fix error handling in _sqlite3 (GH-24395) https://github.com/python/cpython/commit/8a833a6f94d8c2baa6aa38abd9fc699881a5b0e1 --

[issue43083] Minor errors related to error handling in _sqlite3 module

2021-01-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9073180db521dc83e6216ff0da1479d00167f643 by Serhiy Storchaka in branch 'master': bpo-43083: Fix error handling in _sqlite3 (GH-24395) https://github.com/python/cpython/commit/9073180db521dc83e6216ff0da1479d00167f643 --

[issue43083] Minor errors related to error handling in _sqlite3 module

2021-01-31 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +23214 pull_request: https://github.com/python/cpython/pull/24400 ___ Python tracker

[issue43083] Minor errors related to error handling in _sqlite3 module

2021-01-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +23209 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24395 ___ Python tracker

[issue43083] Minor errors related to error handling in _sqlite3 module

2021-01-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : There are few minor errors in the _sqlite3: * In two places the result of PyList_Append() is not checked. * The lastrowid field of pysqlite_Cursor can contain a reference to destroyed object when GIL is released for calling sqlite3_last_insert_rowid(). *