[3.12] gh-108267 Fix another dataclasses docs typo (GH-119277) (#119280)

gh-108267 Fix another dataclasses docs typo (GH-119277)
(cherry picked from commit 423bbcbbc4)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-05-21 00:48:54 +02:00 committed by GitHub
parent f489911f2c
commit cdccafb2d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -614,7 +614,8 @@ methods will raise a :exc:`FrozenInstanceError` when invoked.
There is a tiny performance penalty when using ``frozen=True``: There is a tiny performance penalty when using ``frozen=True``:
:meth:`~object.__init__` cannot use simple assignment to initialize fields, and :meth:`~object.__init__` cannot use simple assignment to initialize fields, and
must use :meth:`!object.__setattr__`. must use :meth:`!object.__setattr__`.
.. Make sure to not remove "object" from "object.__setattr__" in the above markup
.. Make sure to not remove "object" from "object.__setattr__" in the above markup!
.. _dataclasses-inheritance: .. _dataclasses-inheritance: