[issue38175] Memory leak in comparison of sqlite.Row objects

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

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset be257bcad12b1d72a2c2a8199d2291ae22bccf78 by Serhiy Storchaka in branch '2.7': [2.7] bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155). (GH-16215)

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-17 Thread miss-islington
miss-islington added the comment: New changeset f04299d978793be33828dc4d5f46e9b54c81a0a2 by Miss Islington (bot) in branch '3.8': bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) https://github.com/python/cpython/commit/f04299d978793be33828dc4d5f46e9b54c81a0a2

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-17 Thread miss-islington
miss-islington added the comment: New changeset 4ac1be28281d8961e71b13623c3671245c125760 by Miss Islington (bot) in branch '3.7': bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) https://github.com/python/cpython/commit/4ac1be28281d8961e71b13623c3671245c125760

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15816 pull_request: https://github.com/python/cpython/pull/16215 ___ Python tracker ___

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8debfa50407107ff2329d01081cdc12d359f1d12 by Serhiy Storchaka in branch 'master': bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) https://github.com/python/cpython/commit/8debfa50407107ff2329d01081cdc12d359f1d12

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +15800 pull_request: https://github.com/python/cpython/pull/16194 ___ Python tracker ___

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +15799 pull_request: https://github.com/python/cpython/pull/16193 ___ Python tracker ___

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15765 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16155 ___ Python tracker

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : There is a memory leak in comparison of sqlite.Row objects when row descriptors are different. There were not tests for this case. Also, the code compares the result of PyObject_RichCompare() with Py_True and Py_False. It is better to avoid such code,