Robert Wittams пишет:
> The way that it works now, everything is standard python resolution,
> object creation, with the single addition that attributes get to poke at
> the class if they want to.
> 
> Anyway, the following look perfectly reasonable and clear to me:
> 
> class Something(Model):
>     name = CharField(maxlength=100)
> 
>     readability = WriteOnly()
> 
> class Something(Model):
>     name = CharField(maxlength=100)
> 
>     storage = RDFStorage()
> 
> 

May be "_storage = RDFStorage()" will looks better? (with underscore).

Reply via email to