Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python (retired) Inheritance Intro to Inheritance

Yan Zaretskiy
Yan Zaretskiy
4,475 Points

Is it possible to force setattr() to discard new attributes?

Coming from C++, I am confused with the amount of flexibility that Python provides in its type system. What if I want to ensure that my class cannot be extended with new attributes by the user? Is it possible?

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

It is possible to overwrite the class method __setattr__() to limit attribute changes and additions (See docs). This [StackOverflow]{http://stackoverflow.com/questions/3603502/prevent-creating-new-attributes-outside-init) question has an example.

You can also set the class variable __slots__ to restrict attribute creation, but there are some caveats as mentioned in this SO response.

More doc info on _slots_