[issue3323] Clarify __slots__ behaviour when inheriting

2008-07-19 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Added a note in r65136, thanks. -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3323 ___

[issue3323] Clarify __slots__ behaviour when inheriting

2008-07-09 Thread Andy
New submission from Andy [EMAIL PROTECTED]: Suggest clarification on behaviour of the __slots__ attribute when inheriting from classes that don't have __slots__ defined. Obviously the superclass automatically creates __dict__, and it seems the subclass inherits this. I presume this is expected