I want to be able to create a class (in Python) that once initialized with __init__, does not accept new attributes, but accepts modifications of existing attri
__init__
The proper way is to override __setattr__. That's what it's there for.
__setattr__