[issue7943] Memory leak due to circular references in ssl.SSLSocket

2010-04-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed with test in r80423 (trunk) and r80425 (2.6). Also ported the test to py3k/3.1. Thanks! -- nosy: +pitrou resolution: -> fixed stage: unit test needed -> committed/rejected status: open -> closed ___ Python

[issue7943] Memory leak due to circular references in ssl.SSLSocket

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

[issue7943] Memory leak due to circular references in ssl.SSLSocket

2010-04-08 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue7943] Memory leak due to circular references in ssl.SSLSocket

2010-02-16 Thread Péter Szabó
New submission from Péter Szabó : Here is how to reproduce the leak in Python 2.6.4 and Python 2.7: import gc import socket import ssl sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) gc.disable() gc.collect() count0 = gc.get_count()[0] for i in xrange(1000): ssl.SSLS