You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The slots feature of classes in Python allows for a significant efficiency gain.
In general, our data classes are read-only and don't use prototyping. They could potentially benefit from using slots.
The text was updated successfully, but these errors were encountered:
Rationale
The
slots
feature of classes in Python allows for a significant efficiency gain.In general, our data classes are read-only and don't use prototyping. They could potentially benefit from using
slots
.The text was updated successfully, but these errors were encountered: