How is it possible to delete an object on Python, other than use 'del', as I understand that this deincrements the reference count to the object, rather than erase the object itself, I need to erase objects completely, how is this done? I know that if I delete all the references then the object will cease to exist, but this seems like a round-about way to do it.
TIA
Garry
TIA
Garry