6 lines
97 B
Python
6 lines
97 B
Python
class Dog:
|
|
def __del__(self):
|
|
global heaven
|
|
heaven.append(self)
|
|
|
|
heaven = []
|