This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Fix resource warnings in test_telnetlib
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.2
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: jackdied Nosy List: bbrazil, brett.cannon, brian.curtin, jackdied, orsenthil
Priority: normal Keywords: patch

Created on 2010-10-30 12:17 by bbrazil, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_telnetlib_fd_leak.patch bbrazil, 2010-10-30 12:17 review
Messages (2)
msg119974 - (view) Author: Brian Brazil (bbrazil) * Date: 2010-10-30 12:17
Please see attached patch and "closing files and sockets in a timely manner in the stdlib" on python-dev.
msg120849 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2010-11-09 09:21
conn.close() was done in the finally method in r86228 by brian.curtin.
The other change in your patch in very minor space addition after comma. We can leave it to place along with some other code change.
History
Date User Action Args
2022-04-11 14:57:08adminsetgithub: 54454
2010-11-09 09:21:59orsenthilsetstatus: open -> closed

nosy: + brian.curtin, orsenthil
messages: + msg120849

resolution: not a bug
stage: commit review -> resolved
2010-11-05 21:08:32terry.reedysettype: behavior
2010-11-05 21:08:08terry.reedysetstage: commit review
2010-10-30 18:00:37jackdiedsetassignee: jackdied

nosy: + jackdied
versions: + Python 3.2, - Python 3.3
2010-10-30 12:17:56bbrazilcreate