# HG changeset patch # User Paul Boddie # Date 1338325424 -7200 # Node ID 3c26bdc2d8e51ec70db30db033c8b652250702e0 # Parent 41b26d6cd7ea0c083e9652c457d54ac835c08f7f Fixed/updated instance attributes definition note. diff -r 41b26d6cd7ea -r 3c26bdc2d8e5 docs/concepts.txt --- a/docs/concepts.txt Mon May 21 23:59:50 2012 +0200 +++ b/docs/concepts.txt Tue May 29 23:03:44 2012 +0200 @@ -20,8 +20,7 @@ * Module attributes are defined either at the module level or by global statements. * Class attributes are defined only within class statements. - * Instance attributes are defined only by assignments to attributes of self - within __init__ methods. + * Instance attributes are defined only by assignments to attributes of self. These restrictions apply because such attributes are thus explicitly declared, permitting the use of tables (described below). Module and class attributes