In Python, when would I want to use __slots__ and when would I want to avoid it?
|
1
|
|
|
|
|
|
Quoting Jacob Hallen: *"The proper use of "Unfortunately there is a side effect to slots. They change the behavior of the objects that have slots in a way that can be abused by control freaks and static typing weenies. This is bad, because the control freaks should be abusing the metaclasses and the static typing weenies should be abusing decorators, since in Python,there should be only one obvious way of doing something. "Making CPython smart enough to handle saving space without |
||
|
|
|
|
Each python object has a However, when you use 'slots', any object created for that class won't have a 'dict' attribute. Instead, all attribute access is done directly via pointers. So if want a C style structure rather than a full fledged class you can use |
||
|
|
|
|
You have -- essentially -- no use for The time when you think you might need
The class-like wrapper has no attributes -- it just provides methods that act on the underlying data. The methods can be reduced to class methods. Indeed, it could be reduced to just functions operating on the underlying array of data. |
||||||
|
|
|
You would want to use It's highly discouraged to use |
||
|
|
