[issue42425] Possible leak in initialization of errmap for OSError

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

[issue42425] Possible leak in initialization of errmap for OSError

2021-01-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 7695d832565914efcedcc885feb129f5102aec90 by Serhiy Storchaka in branch '3.9': [3.9] bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446). (GH-24057) https://github.com/python/cpython/commit/7695d832565914efcedcc885f

[issue42425] Possible leak in initialization of errmap for OSError

2021-01-02 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22891 pull_request: https://github.com/python/cpython/pull/24057 ___ Python tracker ___

[issue42425] Possible leak in initialization of errmap for OSError

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1a544e1dcf8e0880ee35ce78a7f90fc4e5c98c4f by Serhiy Storchaka in branch '3.8': [3.8] bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446). (GH-24025) https://github.com/python/cpython/commit/1a544e1dcf8e0880ee35ce78a

[issue42425] Possible leak in initialization of errmap for OSError

2020-12-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22865 pull_request: https://github.com/python/cpython/pull/24025 ___ Python tracker ___

[issue42425] Possible leak in initialization of errmap for OSError

2020-11-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ed1007c0d74e658d1e6c9b51b12ce7501eb8cbf9 by Serhiy Storchaka in branch 'master': bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446) https://github.com/python/cpython/commit/ed1007c0d74e658d1e6c9b51b12ce7501eb8cbf9

[issue42425] Possible leak in initialization of errmap for OSError

2020-11-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +22338 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23446 ___ Python tracker ___

[issue42425] Possible leak in initialization of errmap for OSError

2020-11-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : There is a potential leak when adding item to errmap (errno to OSError subclass mapping) fails. -- components: Interpreter Core messages: 381565 nosy: serhiy.storchaka priority: normal severity: normal status: open title: Possible leak in initiali