cpython
cpython copied to clipboard
gh-89529: disallow `default_factory` for fields in dataclasses without `__init__`
This is a proposal for rejecting default_factory
on fields if the dataclass does not have an __init__
method.
- Issue: gh-89529