delete a property from an object ?

one can add a property during GE execution with :
myob[‘newprop’]=var
is there a way to remove it later ?

del myob[‘newprop’]
Same as a dictionary, how pythonic :slight_smile:

yep I founded it thanks. the new API is really nice.