diff options
-rw-r--r-- | Doc/library/dataclasses.rst | 2 | ||||
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2021-04-25-22-44-27.bpo-43938.nC660q.rst | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index e13685e..e4d2b57 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -631,4 +631,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`. @@ -1452,6 +1452,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 0000000..dcf252e --- /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. |