fork download
  1. class Foo:
  2. __slots__ = ()
  3. def __del__(self):
  4. print('__del__')
  5.  
  6. x = Foo()
Success #stdin #stdout 0.03s 9392KB
stdin
Standard input is empty
stdout
Standard output is empty