[issue7927] SSL socket is not closed properly

2010-02-14 Thread Péter Szabó
New submission from Péter Szabó : Here is how to reproduce: import socket import ssl sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sslsock = ssl.SSLSocket(sock) assert sslsock._sslobj is None sslsock.connect(('www.gmail.com', 443)) assert isinstance(sslsock._sslobj, socket._ssl.SSLTyp

[issue7927] SSL socket is not closed properly

2010-04-08 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk. -- nosy: +ajaksu2 priority: -> normal stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___

[issue7927] SSL socket is not closed properly

2010-04-09 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> janssen nosy: +janssen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue7927] SSL socket is not closed properly

2010-04-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Probably a duplicate of issue5238. -- nosy: +pitrou resolution: -> duplicate status: open -> closed superseder: -> ssl makefile never closes socket ___ Python tracker ___