summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorLlandy Riveron Del Risco <llandy3d@gmail.com>2021-04-26 18:53:28 (GMT)
committerGitHub <noreply@github.com>2021-04-26 18:53:28 (GMT)
commit8a307e488d596914a7a5df6b2fdd945f8ce81e69 (patch)
tree1ca798a0beb61fb96fb8015fb292858cf98918f2 /Doc/library
parent1b1f9852bda85c01ef124858f293e9c13e04ffce (diff)
downloadcpython-8a307e488d596914a7a5df6b2fdd945f8ce81e69.zip
cpython-8a307e488d596914a7a5df6b2fdd945f8ce81e69.tar.gz
cpython-8a307e488d596914a7a5df6b2fdd945f8ce81e69.tar.bz2
bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/dataclasses.rst2
1 files changed, 1 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`.