This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Document that dataclasses.FrozenInstanceError derives from AttributeError
Type: Stage: resolved
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, eric.smith, llandy3d, miss-islington
Priority: normal Keywords: easy, newcomer friendly, patch

Created on 2021-04-25 16:25 by eric.smith, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 25603 merged llandy3d, 2021-04-25 20:51
PR 25635 merged miss-islington, 2021-04-26 18:53
PR 25636 merged miss-islington, 2021-04-26 18:53
Messages (6)
msg391861 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-04-25 16:25
This is a newcomer friendly issue. The documentation just needs a sentence that FrozenInstanceError is derived from AttributeError.
msg391956 - (view) Author: Llandy Riveron Del Risco (llandy3d) * Date: 2021-04-26 17:46
The CLA should be correctly signed. Using this message as a test to see if the star appears correctly after the name.
msg391966 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-04-26 18:53
New changeset 8a307e488d596914a7a5df6b2fdd945f8ce81e69 by Llandy Riveron Del Risco in branch 'master':
bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603)
https://github.com/python/cpython/commit/8a307e488d596914a7a5df6b2fdd945f8ce81e69
msg391974 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-04-26 19:36
New changeset 081bfe4eb58e107de0a38e98c44a3253e4ed1240 by Miss Islington (bot) in branch '3.8':
bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603) (GH-25636)
https://github.com/python/cpython/commit/081bfe4eb58e107de0a38e98c44a3253e4ed1240
msg391975 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-04-26 19:36
New changeset c9c1dbd253d70665c1fd20e6341f9a08e21f37f4 by Miss Islington (bot) in branch '3.9':
bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603) (GH-25635)
https://github.com/python/cpython/commit/c9c1dbd253d70665c1fd20e6341f9a08e21f37f4
msg391976 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-04-26 19:37
Thanks for the patch!
History
Date User Action Args
2022-04-11 14:59:44adminsetgithub: 88104
2021-04-26 19:37:02eric.smithsetstatus: open -> closed
resolution: fixed
messages: + msg391976

stage: patch review -> resolved
2021-04-26 19:36:27eric.smithsetmessages: + msg391975
2021-04-26 19:36:21eric.smithsetmessages: + msg391974
2021-04-26 18:53:46miss-islingtonsetpull_requests: + pull_request24331
2021-04-26 18:53:40miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request24330
2021-04-26 18:53:37eric.smithsetmessages: + msg391966
2021-04-26 17:46:09llandy3dsetmessages: + msg391956
2021-04-25 20:51:31llandy3dsetkeywords: + patch
nosy: + llandy3d

pull_requests: + pull_request24319
stage: needs patch -> patch review
2021-04-25 16:25:34eric.smithcreate