Popular recipes by Henry Crutcher http://code.activestate.com/recipes/users/1319534/2005-09-21T19:10:00-07:00ActiveState Code RecipesAutomatically initializing instance variables from __init__ parameters (Python)
2005-09-21T19:10:00-07:00Henry Crutcherhttp://code.activestate.com/recipes/users/1319534/http://code.activestate.com/recipes/286185-automatically-initializing-instance-variables-from/
<p style="color: grey">
Python
recipe 286185
by <a href="/recipes/users/1319534/">Henry Crutcher</a>
(<a href="/recipes/tags/oop/">oop</a>).
Revision 3.
</p>
<p>This recipe assigns each parameter to an instance variable of the same name, automating a common pattern of object initialization, and making class definitions more compact.</p>