Skip to content

Commit

Permalink
gh-108267: Fix object.__setattr__ regression in dataclasses docs (#11…
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed May 16, 2024
1 parent b683994 commit 17cba55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Doc/library/dataclasses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,8 @@ methods will raise a :exc:`FrozenInstanceError` when invoked.

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

Expand Down

0 comments on commit 17cba55

Please sign in to comment.