Tuesday, 24 August 2021
Interesting Snippets from 2021-08-24
-
python - Usage of __slots__? - Stack Overflow
The special attribute __slots__ allows you to explicitly state which instance attributes you expect your object instances to have, with the expected results: faster attribute access. space savings in memory.