Example:
a = 5
b = a
del b # but I want to delete the memory of a using b's pointer.
So if this worked proper "a" would then return nothing. Because it would not longer exist.
Is there a b.object = None
solution or something? Or is this type of pointer behavior not possible?