[issue23526] Silence resource warnings in test_httplib

2015-03-11 Thread Berker Peksag
Changes by Berker Peksag : -- stage: commit review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23526] Silence resource warnings in test_httplib

2015-03-11 Thread STINNER Victor
STINNER Victor added the comment: > I think this one can be closed. Let me know if I was mistaken :) Correct, I forgot to close it, thanks. -- ___ Python tracker ___ ___

[issue23526] Silence resource warnings in test_httplib

2015-03-11 Thread Martin Panter
Martin Panter added the comment: I think this one can be closed. Let me know if I was mistaken :) -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue23526] Silence resource warnings in test_httplib

2015-02-27 Thread Alex Shkop
Alex Shkop added the comment: Thanks, great to hear. I'm glad to help) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue23526] Silence resource warnings in test_httplib

2015-02-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 056d71d7bb28 by Victor Stinner in branch '3.4': Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop. https://hg.python.org/cpython/rev/056d71d7bb28 -- nosy: +python-dev ___ Pyth

[issue23526] Silence resource warnings in test_httplib

2015-02-27 Thread STINNER Victor
STINNER Victor added the comment: I applied your patch. Thanks Alex Shkop! (FYI I also added your name to Misc/ACKS.) -- ___ Python tracker ___ _

[issue23526] Silence resource warnings in test_httplib

2015-02-26 Thread STINNER Victor
STINNER Victor added the comment: I was going to commit the fix, but currently the 3.4 is not merged into default. I will wait until 3.4 is merged into default to apply the fix. I attach my pending commit. (Python 3.4 is also afffected.) -- nosy: +haypo versions: +Python 3.4 Added fil

[issue23526] Silence resource warnings in test_httplib

2015-02-26 Thread Demian Brecht
Demian Brecht added the comment: LGTM -- nosy: +demian.brecht stage: -> patch review type: -> behavior ___ Python tracker ___ ___ Py

[issue23526] Silence resource warnings in test_httplib

2015-02-26 Thread Demian Brecht
Changes by Demian Brecht : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue23526] Silence resource warnings in test_httplib

2015-02-26 Thread Martin Panter
Martin Panter added the comment: +1 from me. These three fixes are practically the same as the ones I snuck into my patch for a Issue 23377. -- nosy: +vadmium ___ Python tracker ___

[issue23526] Silence resource warnings in test_httplib

2015-02-25 Thread Alex Shkop
New submission from Alex Shkop: Three resource warnings are present in test_httplib. Patch closes HTTPSConnection in test_networked_noverification, test_networked_trusted_by_default_cert, test_networked_good_cert. -- components: Tests files: test_httplib_warnings.patch keywords: patch m