[issue12692] test_urllib2net is triggering a ResourceWarning

2013-12-28 Thread Senthil Kumaran
Senthil Kumaran added the comment: @Martin. Agree that this should have been backported. I have done that. Thank you! -- ___ Python tracker ___ __

[issue12692] test_urllib2net is triggering a ResourceWarning

2013-12-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset a43e96695203 by Senthil Kumaran in branch '3.3': Backporing the fix from Issue #12692 http://hg.python.org/cpython/rev/a43e96695203 New changeset 031417ee8351 by Senthil Kumaran in branch 'default': #12692: null merge with 3.3 http://hg.python.org/c

[issue12692] test_urllib2net is triggering a ResourceWarning

2013-12-28 Thread Martin Panter
Martin Panter added the comment: Any chance of backporting this to version 3.3? I think it is a real-world issue beyond the test suite. See Issue 19524. -- nosy: +vadmium ___ Python tracker ___

[issue12692] test_urllib2net is triggering a ResourceWarning

2012-10-21 Thread Nadeem Vawda
Changes by Nadeem Vawda : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12692] test_urllib2net is triggering a ResourceWarning

2012-10-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 92656b5df2f2 by Nadeem Vawda in branch 'default': Issue #12692: Fix resource leak in urllib.request. http://hg.python.org/cpython/rev/92656b5df2f2 -- nosy: +python-dev ___ Python tracker

[issue12692] test_urllib2net is triggering a ResourceWarning

2011-08-05 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the info, Nadeem. -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ P

[issue12692] test_urllib2net is triggering a ResourceWarning

2011-08-05 Thread Nadeem Vawda
Changes by Nadeem Vawda : -- versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue12692] test_urllib2net is triggering a ResourceWarning

2011-08-05 Thread Nadeem Vawda
Nadeem Vawda added the comment: Relevant: http://mail.python.org/pipermail/python-dev/2011-July/112551.html -- nosy: +nadeem.vawda ___ Python tracker ___ ___

[issue12692] test_urllib2net is triggering a ResourceWarning

2011-08-04 Thread Brett Cannon
New submission from Brett Cannon : Specifically, test.test_urllib2net.OtherNetworkTests.test_sites_no_connection_close is leaving a socket open somewhere, but tracking down exactly whom is to blame is a mess since socket.SocketIO.close() explicitly relies on refcounting to shut down a socket.