[issue9412] test_smtpd leaks references

2010-07-29 Thread Georg Brandl
Georg Brandl added the comment: The culprit was indeed DummyServer.messages. Fixed in r83222. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker

[issue9412] test_smtpd leaks references

2010-07-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: > That's odd. I didn't run the refcount tests because I was only adding > Python code. That's not odd. A reference leak can indicate that some objects hang in memory permanently rather than being cleaned up after the test run. Looking at the code you added, Dum

[issue9412] test_smtpd leaks references

2010-07-29 Thread Richard Jones
Richard Jones added the comment: That's odd. I didn't run the refcount tests because I was only adding Python code. I'll look into compiling a debug build and running the tests locally with a view to tracking down the problem. -- ___ Python tracker

[issue9412] test_smtpd leaks references

2010-07-29 Thread Antoine Pitrou
New submission from Antoine Pitrou : See http://mail.python.org/pipermail/python-checkins/2010-July/095648.html test_smtpd leaked [25, 25, 25] references, sum=75 -- assignee: richard components: Library (Lib) messages: 111901 nosy: giampaolo.rodola, pitrou, richard priority: high severi