mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
gh-106107: document correct error that's raised when a mutable default value for a field is detected (gh-106109)
This commit is contained in:
parent
219effa876
commit
512f299e55
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ for ``x`` when creating a class instance will share the same copy
|
||||||
of ``x``. Because dataclasses just use normal Python class
|
of ``x``. Because dataclasses just use normal Python class
|
||||||
creation they also share this behavior. There is no general way
|
creation they also share this behavior. There is no general way
|
||||||
for Data Classes to detect this condition. Instead, the
|
for Data Classes to detect this condition. Instead, the
|
||||||
:func:`dataclass` decorator will raise a :exc:`TypeError` if it
|
:func:`dataclass` decorator will raise a :exc:`ValueError` if it
|
||||||
detects an unhashable default parameter. The assumption is that if
|
detects an unhashable default parameter. The assumption is that if
|
||||||
a value is unhashable, it is mutable. This is a partial solution,
|
a value is unhashable, it is mutable. This is a partial solution,
|
||||||
but it does protect against many common errors.
|
but it does protect against many common errors.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue