From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 26 Apr 2021 19:36:13 +0000 (-0700) Subject: bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603) (GH-25636) X-Git-Tag: v3.8.10~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=081bfe4eb58e107de0a38e98c44a3253e4ed1240;p=thirdparty%2FPython%2Fcpython.git bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603) (GH-25636) (cherry picked from commit 8a307e488d596914a7a5df6b2fdd945f8ce81e69) Co-authored-by: Llandy Riveron Del Risco Co-authored-by: Llandy Riveron Del Risco --- diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index 24acd7417d84..9b53372b3d3a 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -592,4 +592,4 @@ Exceptions Raised when an implicitly defined :meth:`__setattr__` or :meth:`__delattr__` is called on a dataclass which was defined with - ``frozen=True``. + ``frozen=True``. It is a subclass of :exc:`AttributeError`. diff --git a/Misc/ACKS b/Misc/ACKS index 39aa954a7b44..b25bd20deeb2 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -1401,6 +1401,7 @@ Vlad Riscutia Wes Rishel Daniel Riti Juan M. Bello Rivas +Llandy Riveron Del Risco Mohd Sanad Zaki Rizvi Davide Rizzo Anthony Roach diff --git a/Misc/NEWS.d/next/Documentation/2021-04-25-22-44-27.bpo-43938.nC660q.rst b/Misc/NEWS.d/next/Documentation/2021-04-25-22-44-27.bpo-43938.nC660q.rst new file mode 100644 index 000000000000..dcf252e21bb9 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2021-04-25-22-44-27.bpo-43938.nC660q.rst @@ -0,0 +1,2 @@ +Update dataclasses documentation to express that FrozenInstanceError is +derived from AttributeError.