[issue42021] Fix possible ref. leaks in _sqlite3 module initialisation

2020-10-15 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42021] Fix possible ref. leaks in _sqlite3 module initialisation

2020-10-15 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 644e94272a89196801825cb69a56377bf62d256a by Erlend Egeberg Aasland in branch 'master': bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673) https://github.com/python/cpython/commit/644e94272a89196801825cb69a56377bf62d256a

[issue42021] Fix possible ref. leaks in _sqlite3 module initialisation

2020-10-12 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42021] Fix possible ref. leaks in _sqlite3 module initialisation

2020-10-12 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42021] Fix possible ref. leaks in _sqlite3 module initialisation

2020-10-12 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- keywords: +patch pull_requests: +21647 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22673 ___ Python tracker

[issue42021] Fix possible ref. leaks in _sqlite3 module initialisation

2020-10-12 Thread Erlend Egeberg Aasland
New submission from Erlend Egeberg Aasland : Handle PyDict_SetItemString() errors in _sqlite3 init by dereferencing the item object and then goto error. -- components: Library (Lib) messages: 378516 nosy: erlendaasland priority: normal severity: normal status: open title: Fix possible