[issue41662] Bugs in binding parameters in sqlite3

2020-10-25 Thread Inada Naoki
Inada Naoki added the comment: New changeset a053a7ecfef006b834a9957468fa461dafb332db by Miss Skeleton (bot) in branch '3.8': bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) https://github.com/python/cpython/commit/a053a7ecfef006b834a9957468fa461dafb332db -- nosy:

[issue41662] Bugs in binding parameters in sqlite3

2020-09-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41662] Bugs in binding parameters in sqlite3

2020-09-17 Thread miss-islington
miss-islington added the comment: New changeset f76a3889d1fc6c5514323866a047b642c6da4e9b by Miss Islington (bot) in branch '3.9': bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) https://github.com/python/cpython/commit/f76a3889d1fc6c5514323866a047b642c6da4e9b --

[issue41662] Bugs in binding parameters in sqlite3

2020-09-17 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +21342 pull_request: https://github.com/python/cpython/pull/22289 ___ Python tracker

[issue41662] Bugs in binding parameters in sqlite3

2020-09-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +21343 pull_request: https://github.com/python/cpython/pull/22290 ___ Python tracker ___

[issue41662] Bugs in binding parameters in sqlite3

2020-09-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 0b419b791077414bbc011a412698ebb362b63761 by Serhiy Storchaka in branch 'master': bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) https://github.com/python/cpython/commit/0b419b791077414bbc011a412698ebb362b63761 --

[issue41662] Bugs in binding parameters in sqlite3

2020-08-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +21104 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21998 ___ Python tracker

[issue41662] Bugs in binding parameters in sqlite3

2020-08-29 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : There are few bugs in the code for binding parameters specified in the sqlite3 module: 1. If argument "parameters" is a list, PyList_GET_ITEM() is called in a loop, but the size of the list is read only once before loop. Since the list can be changed