In Python, when would I want to use __slots__ and when would I want to avoid it?
| ||||
|
feedback
|
|
Quoting Jacob Hallen:
| |||||||
feedback
|
|
You would want to use It's highly discouraged to use | |||
|
feedback
|
|
Each python object has a However, when you use So if want a C style structure rather than a full fledged class you can use | ||||
feedback
|
|
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. | |||||||||||
feedback
|