Skip to content

Commit c69fe80

Browse files
[3.13] gh-108267: Fix object.__setattr__ regression in dataclasses docs (GH-119082) (#119097)
Co-authored-by: Shantanu <[email protected]>
1 parent 8a4730e commit c69fe80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/library/dataclasses.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,8 @@ methods will raise a :exc:`FrozenInstanceError` when invoked.
615615

616616
There is a tiny performance penalty when using ``frozen=True``:
617617
:meth:`~object.__init__` cannot use simple assignment to initialize fields, and
618-
must use :meth:`!__setattr__`.
618+
must use :meth:`!object.__setattr__`.
619+
.. Make sure to not remove "object" from "object.__setattr__" in the above markup
619620
620621
.. _dataclasses-inheritance:
621622

0 commit comments

Comments
 (0)