Issue73

Title Investigate use of __slots__
Type wish Status deferred
Importance
Superseder Nosy List mg
Assigned To mg Keywords design

Created on 2008-11-05.14:40:37 by mg, last changed 2009-01-09.17:39:28 by mg.

Messages
msg306 (view) Author: mg Date: 2009-01-09.17:39:28
We cannot use __slots__ for the Share class until Twisted updates the
Deferred class to do so. See this bug report:

  http://twistedmatrix.com/trac/ticket/3245
msg288 (view) Author: mg Date: 2008-11-05.14:40:37
Python allows a class to list its attributes in a special __slots__
attribute. This saves allocating memory for the dictionary which
normally holds the class' attributes.
History
Date User Action Args
2009-01-09 17:39:28mgsetstatus: unread -> deferred
messages: + msg306
2008-11-05 14:40:37mgcreate