This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: SocketIO redefines RawIOBase.__del__
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, benjamin.peterson, pitrou
Priority: normal Keywords:

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:46adminsetgithub: 49597
2010-07-09 18:28:47benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg109778

resolution: fixed
2010-07-09 15:50:04BreamoreBoysetnosy: + BreamoreBoy
messages: + msg109757
2009-02-22 20:48:55pitroucreate