[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-17 Thread Olivier Vielpeau
Olivier Vielpeau added the comment: Thnaks for the reviews and the merge! :) -- ___ Python tracker ___ ___

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I merged Olivier's PR, and backported into 3.6, 3.5, and 2.7. I also added Olivier Vielpeau to misc/ACKS. Thanks :) -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset c40740cf06470a774e98f84537801cd8b7176938 by Mariatta in branch '3.5': [3.5] bpo-29738: Fix memory leak in _get_crl_dp (GH-526) (GH-1143) https://github.com/python/cpython/commit/c40740cf06470a774e98f84537801cd8b7176938 --

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 8e7201342dc6eef201bfa4f533ad89a8144fd693 by Mariatta in branch '3.6': [3.6] bpo-29738: Fix memory leak in _get_crl_dp (GH-526) (GH-1142) https://github.com/python/cpython/commit/8e7201342dc6eef201bfa4f533ad89a8144fd693 --

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 39f5956ffbcc4fe83cee59eed1d18845a5b25dd2 by Mariatta in branch 'master': bpo-29738: Add Olivier Vielpeau to Misc/ACKS (GH-1146) https://github.com/python/cpython/commit/39f5956ffbcc4fe83cee59eed1d18845a5b25dd2 --

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +1277 ___ Python tracker ___ ___

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset b2b00e039ce71e69148e5f479e2154c1c7b712ca by Mariatta in branch '2.7': [2.7] bpo-29738: Fix memory leak in _get_crl_dp (GH-526) (GH-1144) https://github.com/python/cpython/commit/b2b00e039ce71e69148e5f479e2154c1c7b712ca --

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +1273 ___ Python tracker ___ ___

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +1275 ___ Python tracker ___ ___

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 2849cc34a8db93d448a62d69c462402347b50dcb by Mariatta (Olivier Vielpeau) in branch 'master': bpo-29738: Fix memory leak in _get_crl_dp (GH-526) https://github.com/python/cpython/commit/2849cc34a8db93d448a62d69c462402347b50dcb -- nosy:

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-04-14 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +1274 ___ Python tracker ___ ___

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-03-24 Thread Olivier Vielpeau
Olivier Vielpeau added the comment: I've attached the PR on Github and signed the CLA, is there anything else needed from me to get this reviewed? Thanks! -- ___ Python tracker

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-03-06 Thread Olivier Vielpeau
Changes by Olivier Vielpeau : -- pull_requests: +433 ___ Python tracker ___

[issue29738] Fix memory leak in SSLSocket.getpeercert()

2017-03-06 Thread Olivier Vielpeau
New submission from Olivier Vielpeau: The code snippet in #25569 reproduces the memory leak with Python 3.6.0 and 2.7.13. The current memory leak is a regression that was introduced in #26470. Going to attach a PR on github that fixes the issue shortly. -- assignee: christian.heimes