Issue 5347: SocketIO redefines RawIOBase.del (original) (raw)

Issue5347

Created on 2009-02-22 20:48 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg82609 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-02-22 20:48
SocketIO defines its own __del__ while it could simply rely on IOBase.__del__ to do the right thing. I'm saying this because in the C version of the io lib, there is no __del__ anymore, so that SocketIO objects caught in a ref cycle wouldn't block the GC from collecting the objects.
msg109757 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-07-09 15:50
Does anyone need to do anything with this, or can it be closed?
msg109778 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-07-09 18:28
r82748
History
Date User Action Args
2022-04-11 14:56:46 admin set github: 49597
2010-07-09 18:28:47 benjamin.peterson set status: open -> closednosy: + benjamin.petersonmessages: + resolution: fixed
2010-07-09 15:50:04 BreamoreBoy set nosy: + BreamoreBoymessages: +
2009-02-22 20:48:55 pitrou create