[issue16900] SSL sockets don't give resource warnings

2013-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset c8105251cc1f by Benjamin Peterson in branch '3.3': remove __del__ because it's evil and also prevents the ResourceWarning on the socket from happening (closes #16900) http://hg.python.org/cpython/rev/c8105251cc1f New changeset e23d51f17cce by Benja

[issue16900] SSL sockets don't give resource warnings

2013-01-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Indeed, SSLSocket.__del__ doesn't seem to have a point. -- nosy: +pitrou stage: -> needs patch ___ Python tracker ___ _

[issue16900] SSL sockets don't give resource warnings

2013-01-08 Thread Benjamin Peterson
New submission from Benjamin Peterson: Python 3.3.0+ (3.3:ab36d3bb5996+, Jan 8 2013, 17:08:35) [GCC 4.5.4] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import socket >>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) >>> del s __main__:1: ResourceWa