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
🌐
Python
docs.python.org › 3 › library › dataclasses.html
dataclasses — Data Classes — Python 3.14.3 documentation
1 month ago - Added in version 3.10. slots: If true (the default is False), __slots__ attribute will be generated and new class will be returned instead of the original one.
🌐
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/

Discussions

When should I use __slots__ in a Python class, and what are the tradeoffs?
You lose the ability to add new ... worth noting: if you’re using dataclasses, you’ll need to explicitly enable slots via @DataClass(slots=True) (available in Python 3.10+).... More on github.com
🌐 github.com
4
3
July 30, 2025
Dataclass code that sets slots=true if python version allows - Stack Overflow
I'm writing a module that needs to run under both Python 3.8 and Python 3.10. I want to have dataclasses that have slots (@dataclasses.dataclass(slots=True)) in Python 3.10 for the purposes of type More on stackoverflow.com
🌐 stackoverflow.com
`dataclasses` plugins does not respect `slots=True` argument
Since 3.10 now has slots=True argument for @dataclass decorator, we need to support it, since #10864 is merged. Failing case right now: from dataclasses import dataclass @dataclass(slots=True) clas... More on github.com
🌐 github.com
2
November 6, 2021
kw_only and slots dataclass compatibility with older versions of Python - Stack Overflow
How can I make use of the new kw_only and slots features available in Python 3.10's dataclass while also supporting older version of Python? The main reason I want to set kw_only is so that I can h... More on stackoverflow.com
🌐 stackoverflow.com
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.

🌐
Trueblade
trueblade.com › blogs › news › python-3-10-new-dataclass-features
Python 3.10: new dataclass features – True Blade Systems Inc
May 10, 2021 - The Python 3.10 beta 1 was released last week. I've added two significant features to dataclasses in this release: support for __slots__ and support for keyword-only __init__ parameters.
🌐
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.
🌐
GitHub
github.com › strawberry-graphql › strawberry › issues › 1893
Add support for `__slots__` in python 3.10 · Issue #1893 · strawberry-graphql/strawberry
May 9, 2022 - In python 3.10 you can use slots=True when applying the dataclasses decorator · see https://docs.python.org/3.10/whatsnew/3.10.html#slots · from dataclasses import dataclass @dataclass(slots=True) class Birthday: name: str birthday: datetime.date ...
Find elsewhere
🌐
Gitlab
gdevops.gitlab.io › tuto_python › versions › 3.10.0 › slots_dataclass › slots_dataclass.html
Slots for data classes — Tuto Python
April 19, 2023 - 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 ...
🌐
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
🌐
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
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
🌐
GitHub
github.com › python › mypy › issues › 11482
`dataclasses` plugins does not respect `slots=True` argument · Issue #11482 · python/mypy
November 6, 2021 - Since 3.10 now has slots=True argument for @dataclass decorator, we need to support it, since #10864 is merged. Failing case right now: from dataclasses import dataclass @dataclass(slots=True) class Some: x: int def __init__(self, x: int...
Author   sobolevn
🌐
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
🌐
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 - import timeit from dataclasses import dataclass from functools import partial@dataclass(slots=False) class Person: first_name : str last_name: str@dataclass(slots=True) class PersonSlot: first_name : str last_name : strdef get_set_delete(person: Person | PersonSlot): person.first_name = "Raphael" _ = person.first_name del person.first_namedef get_percentage_of_performance(): person = Person("Chidozie", "Okafor") person_slot = PersonSlot("Chidozie", "Okafor") no_slots = min(timeit.repeat(partial(get_set_delete, person), number=100, repeat=3)) slots = min(timeit.repeat(partial(get_set_delete, pe
🌐
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.
🌐
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 - Dataclasses offer several more advanced features to improve memory efficiency, code clarity and integration with modern Python features. In Python 3.10+, you can use slots=True to tell the dataclass to predefine its attributes, which reduces ...
🌐
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 - Before we dive into the code examples, let’s briefly understand what dataclass is and how it complements the use of slots in Python classes. dataclass is a decorator introduced in Python 3.7 that automatically generates special methods for you, such as __init__, __repr__, and more.