[Solved] How to make an object indestructible even with force deletion?
Objects in python have reference count which basically means the amount of places an object exist in. Using del removes one reference to the object (it does not force delete it). __del__ is then called when 0 references are left. You may create a new reference to the object and this way prevent it’s deletion … Read more