In Python 3.10+ you can use slots=True with a dataclass to make it more memory-efficient:

from dataclasses import dataclass

@dataclass(slots=True)
class Point:
    x: int = 0
    y: int = 0

This way you can set default field values as well.

Answer from Eugene Yarmash on Stack Overflow
Top answer
1 of 6
70

In Python 3.10+ you can use slots=True with a dataclass to make it more memory-efficient:

from dataclasses import dataclass

@dataclass(slots=True)
class Point:
    x: int = 0
    y: int = 0

This way you can set default field values as well.

2 of 6
56

2021 UPDATE: direct support for __slots__ is added to python 3.10. I am leaving this answer for posterity and won't be updating it.

The problem is not unique to dataclasses. ANY conflicting class attribute will stomp all over a slot:

>>> class Failure:
...     __slots__ = tuple("xyz")
...     x=1
...
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: 'x' in __slots__ conflicts with class variable

This is simply how slots work. The error happens because __slots__ creates a class-level descriptor object for each slot name:

>>> class Success:
...     __slots__ = tuple("xyz")
...
>>>
>>> type(Success.x)
<class 'member_descriptor'>

In order to prevent this conflicting variable name error, the class namespace must be altered before the class object is instantiated such that there are not two objects competing for the same member name in the class:

  • the specified (default) value*
  • the slot descriptor (created by the slots machinery)

For this reason, an __init_subclass__ method on a parent class will not be sufficient, nor will a class decorator, because in both cases the class object has already been created by the time these functions have received the class to alter it.

Current option: write a metaclass

Until such time as the slots machinery is altered to allow more flexibility, or the language itself provides an opportunity to alter the class namespace before the class object is instantiated, our only choice is to use a metaclass.

Any metaclass written to solve this problem must, at minimum:

  • remove the conflicting class attributes/members from the namespace
  • instantiate the class object to create the slot descriptors
  • save references to the slot descriptors
  • put the previously removed members and their values back in the class __dict__ (so the dataclass machinery can find them)
  • pass the class object to the dataclass decorator
  • restore the slots descriptors to their respective places
  • also take into account plenty of corner cases (such as what to do if there is a __dict__ slot)

To say the least, this is an extremely complicated endeavor. It would be easier to define the class like the following- without a default value so that the conflict doesn't occur at all- and then add a default value afterward.

Current option: make alterations after class object instantiation

The unaltered dataclass would look like this:

@dataclass
class C:
    __slots__ = "x"
    x: int

The alteration is straightforward. Change the __init__ signature to reflect the desired default value, and then change the __dataclass_fields__ to reflect the presence of a default value.

from functools import wraps

def change_init_signature(init):
    @wraps(init)
    def __init__(self, x=1):
        init(self,x)
    return __init__

C.__init__ = change_init_signature(C.__init__)

C.__dataclass_fields__["x"].default = 1

Test:

>>> C()
C(x=1)
>>> C(2)
C(x=2)
>>> C.x
<member 'x' of 'C' objects>
>>> vars(C())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: vars() argument must have __dict__ attribute

It works!

Current option: a setmember decorator

With some effort, a so-called setmember decorator could be employed to automatically alter the class in the manner above. This would require deviating from the dataclasses API in order to define the default value in a location other than inside the class body, perhaps something like:

@setmember(x=field(default=1))
@dataclass
class C:
    __slots__="x"
    x: int

The same thing could also be accomplished through a __init_subclass__ method on a parent class:

class SlottedDataclass:
    def __init_subclass__(cls, **kwargs):
        cls.__init_subclass__()
        # make the class changes here

class C(SlottedDataclass, x=field(default=1)):
    __slots__ = "x"
    x: int

Future possibility: change the slots machinery

Another possibility, as mentioned above, would be for the python language to alter the slots machinery to allow more flexibility. One way of doing this might be to change the slots descriptor itself to store class level data at the time of class definition.

This could be done, perhaps, by supplying a dict as the __slots__ argument (see below). The class-level data (1 for x, 2 for y) could just be stored on the descriptor itself for retrieval later:

class C:
    __slots__ = {"x": 1, "y": 2}

assert C.x.value == 1
assert C.y.value == y

One difficulty: it may be desired to only have a slot_member.value present on some slots and not others. This could be accommodated by importing a null-slot factory from a new slottools library:

from slottools import nullslot

class C:
    __slots__ = {"x": 1, "y": 2, "z": nullslot()}

assert not hasattr(C.z, "value")

The style of code suggested above would be a deviation from the dataclasses API. However, the slots machinery itself could even be altered to allow for this style of code, with accommodation of the dataclasses API specifically in mind:

class C:
    __slots__ = "x", "y", "z"
    x = 1  # 1 is stored on C.x.value
    y = 2  # 2 is stored on C.y.value

assert C.x.value == 1
assert C.y.value == y
assert not hasattr(C.z, "value")

Future possibility: "prepare" the class namespace inside the class body

The other possibility is altering/preparing (synonymous with the __prepare__ method of a metaclass) the class namespace.

Currently, there is no opportunity (other than writing a metaclass) to write code that alters the class namespace before the class object is instantiated, and the slots machinery goes to work. This could be changed by creating a hook for preparing the class namespace beforehand, and making it so that an error complaining about the conflicting names is only produced after that hook has been run.

This so-called __prepare_slots__ hook could look something like this, which I think is not too bad:

from dataclasses import dataclass, prepare_slots

@dataclass
class C:
    __slots__ = ('x',)
    __prepare_slots__ = prepare_slots
    x: int = field(default=1)

The dataclasses.prepare_slots function would simply be a function-- similar to the __prepare__ method-- that receives the class namespace and alters it before the class is created. For this case in particular, the default dataclass field values would be stored in some other convenient place so that they can be retrieved after the slot descriptor objects have been created.


* Note that the default field value conflicting with the slot might also be created by the dataclass machinery if dataclasses.field is being used.

🌐
Python
docs.python.org › 3 › library › dataclasses.html
dataclasses — Data Classes
Creates a new dataclass with name cls_name, fields as defined in fields, base classes as given in bases, and initialized with a namespace as given in namespace. fields is an iterable whose elements are each either name, (name, type), or (name, type, Field). If just name is supplied, typing.Any is used for type. The values of init, repr, eq, order, unsafe_hash, frozen, match_args, kw_only, slots, and weakref_slot have the same meaning as they do in @dataclass.
🌐
Hacker News
news.ycombinator.com › item
Reasons to use dataclass(slots=True) instead of TypedDict - Faster attribute acc... | Hacker News
October 17, 2024 - For me it’s mostly about .attribute being more in line with the rest of the language. Kwargs aside, I find overuse of dicts to clunky in Python · https://wiki.python.org/moin/UsingSlots
🌐
Reddit
reddit.com › r/python › full support for slots in dataclasses
r/Python on Reddit: Full support for slots in dataclasses
January 30, 2023 -

Many years ago I've made a small library to provide the __slots__ attribute to dataclasses: dataslots. It's stable, well-tested, and supports type checking. Additional features to python implementation:

  • Support for python 3.7 - 3.12 (python 3.10/3.11 added base support for slots).

  • Support for dynamic assignment for new variables (__dict__ in __slots__).

  • Pickling frozen dataclasses (fixed in python 3.10).

  • Support for data descriptors and slots simultaneously.

If you are using older versions of python or need more from dataclasses give it a try.

Github: https://github.com/starhel/dataslots PyPI: https://pypi.org/project/dataslots/

🌐
Towards Data Science
towardsdatascience.com › home › latest › should you use slots? how slots affect your class, and when and how to use them
Should You Use Slots? How Slots Affect Your Class, and When and How to Use Them | Towards Data Science
March 5, 2025 - Yes! Starting from Python 3.10 you can also add slot dataclasses. It’s even easier with dataclasses, just add a single argument to the @dataclass decorator.
🌐
Plain English
python.plainenglish.io › supercharging-python-classes-with-dataclass-and-slots-3557f8b292d4
Supercharging Python Classes with dataclass and Slots | by Khushiyant | Python in Plain English
November 13, 2023 - The dataclass decorator, combined with slots, offers an elegant solution for creating efficient and readable Python classes. It simplifies the process of defining classes while ensuring that your code remains performant and memory-efficient. Join Medium for free to get updates from this writer.
🌐
The New Stack
thenewstack.io › home › python dataclasses: a complete guide to boilerplate‑free objects
Python Dataclasses: A Complete Guide to Boilerplate‑Free Objects - The New Stack
October 9, 2025 - In these instances, you can use slots=True to predefine the fields. This eliminates the __dict__ and reduces memory usage while speeding up attribute access. Why not use slots=True for all applications? slots=True isn’t a catchall improvement; ...
Find elsewhere
🌐
Medium
doziestar.medium.com › speed-upyour-python-classes-with-slot-454e0655a816
Speed Up Your Python classes with slot | by Chidozie C. Okafor | Medium
May 8, 2022 - Usage of __slots__ reduce the wastage of space and speed up the program by allocating space for a fixed amount of attribute · To create a slot, all we need to do is to add __slots__ field or slots=True if we are using dataclass...
🌐
Gitlab
gdevops.gitlab.io › tuto_python › versions › 3.10.0 › slots_dataclass › slots_dataclass.html
Slots for data classes — Tuto Python
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify ...
🌐
Trueblade
trueblade.com › blogs › news › python-3-10-new-dataclass-features
Python 3.10: new dataclass features – True Blade Systems Inc
May 10, 2021 - If your class wants to use these features, then you can do so freely, without interference from dataclasses. But that's not possible with __slots__. A requirement of specifying __slots__ is that it must be set at class creation time.
🌐
GitHub
github.com › ericvsmith › dataclasses › issues › 28
Support __slots__? · Issue #28 · ericvsmith/dataclasses
July 2, 2017 - Currently the draft PEP specifies and the code supports the optional ability to add __slots__. This is the one place where @dataclass cannot just modify the given class and return it: because __slo...
Author   ericvsmith
🌐
Python
wiki.python.org › moin › UsingSlots
UsingSlots - Python Wiki
The short answer is slots are more efficient in terms of memory space and speed of access, and a bit safer than the default Python method of data access. By default, when Python creates a new instance of a class, it creates a __dict__ attribute for the class.
🌐
PyPI
pypi.org › project › dataslots
Client Challenge
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Real Python
realpython.com › python-data-classes
Data Classes in Python (Guide) – Real Python
March 8, 2024 - A Python dataclass lets you define classes for storing data with less boilerplate. Use @dataclass to generate .__init__(), .__repr__(), and .__eq__() automatically. Dataclasses allow you to create classes quickly, but you can also add defaults, custom methods, ordering, immutability, inheritance, and even slots...
🌐
Python
bugs.python.org › issue46382
Issue 46382: dataclass(slots=True) does not account for slots in base classes - Python tracker
This issue tracker has been migrated to GitHub, and is currently read-only. For more information, see the GitHub FAQs in the Python's Developer Guide · This issue has been migrated to GitHub: https://github.com/python/cpython/issues/90540
🌐
Python
bugs.python.org › issue42269
Issue 42269: Add ability to set __slots__ in dataclasses - Python tracker
This issue tracker has been migrated to GitHub, and is currently read-only. For more information, see the GitHub FAQs in the Python's Developer Guide · This issue has been migrated to GitHub: https://github.com/python/cpython/issues/86435
🌐
Hacker News
news.ycombinator.com › item
The problem with dataclasses are: 1) they don’t support __slots__ and default va... | Hacker News
May 15, 2018 - 1) they don’t support __slots__ and default values · 2) type hints aren’t supported yet, and it doesn’t appear they’ll be added to the 3.6 backport
🌐
Towards Data Science
towardsdatascience.com › home › latest › working with python dataclasses and dataclass wizard
Working with Python Dataclasses and Dataclass Wizard | Towards Data Science
January 17, 2025 - As you can see in the code snippet above, the asdict function from the dataclass wizard package converts the AttrType object without requiring a customized dictionary factor function, which can provide cleaner and more Pythonic code for our project! 🔥 · from dataclasses import dataclass from typing import Dict, Optional, List from dataclass_wizard import asdict, json_field @dataclass(slots=True) class ClassA: attr_class_1: Optional[int] = json_field("attr_class_1", default=None) attr_class_2: Optional[int] = json_field("attr_class_2", default=None) _attr3: Optional[int] = json_field("_attr3", default=None, init=False, repr=False, dump=False) instance_a = ClassA(attr_class_1=1, attr_class_2=2) dict_a = asdict(instance_a) print(dict_a)
🌐
Reddit
reddit.com › r/learnpython › question about dataclasses and slots and type inference
r/learnpython on Reddit: Question about dataclasses and slots and type inference
June 15, 2022 -

Hello, I'm learning to work with the dataclass wrapper, and I want to use the slots feature.

When I don't provide a type annotation for an attribute, the dataclass wrapper doesn't generate a slot for it:

from dataclasses import dataclass


@dataclass(slots=True)
class Foo:
    bar: int = 1
    deadbeef = 2

foo = Foo()
print(foo.__slots__)

Output:

('bar',)

Is there a way I can automatically put it in slots, or must I type annotate everything?