Skip to content

Commit 692179b

Browse files
hauntsaninjamiss-islington
authored andcommitted
pythongh-108267: Fix object.__setattr__ regression in dataclasses docs (pythonGH-119082)
(cherry picked from commit 17cba55) Co-authored-by: Shantanu <[email protected]>
1 parent 0a761ca commit 692179b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/library/dataclasses.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,8 @@ methods will raise a :exc:`FrozenInstanceError` when invoked.
613613

614614
There is a tiny performance penalty when using ``frozen=True``:
615615
:meth:`~object.__init__` cannot use simple assignment to initialize fields, and
616-
must use :meth:`!__setattr__`.
616+
must use :meth:`!object.__setattr__`.
617+
.. Make sure to not remove "object" from "object.__setattr__" in the above markup
617618
618619
.. _dataclasses-inheritance:
619620

0 commit comments

Comments
 (0)