On 9/12/19 9:15 pm, R.Wieser wrote:
To be honest, I was not aware/did not assume that I could delete a class definition that way (I even find it a bit weird, but as I'm a newbie in regard to Python that does not say much).
Python is very dynamic. The class statement is actually an executable statement that creates a class object and binds it to a name. There's nothing stopping you from subsequently rebinding that name to some other object, or deleting it altogether. -- Greg -- https://mail.python.org/mailman/listinfo/python-list