diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-03-19 10:57:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 10:57:31 (GMT) |
commit | 23f97327fe7001118b51a69084b571a3da2e0cf0 (patch) | |
tree | cb25657d8e42692e09b760b9e310880ba137f271 /Misc | |
parent | e1f890828e15d68a5e05a7edf2d53ca44b621c33 (diff) | |
download | cpython-23f97327fe7001118b51a69084b571a3da2e0cf0.zip cpython-23f97327fe7001118b51a69084b571a3da2e0cf0.tar.gz cpython-23f97327fe7001118b51a69084b571a3da2e0cf0.tar.bz2 |
[3.12] gh-105866: fix dataclass with slots=True, weakref_slot=True (GH-105870) (GH-116978)
(cherry picked from commit a22d05f04c074dbb4f71e7837f54c0bb693db75d)
Co-authored-by: Aviel Boag <avboag@gmail.com>
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
Co-authored-by: Carl Meyer <carl@oddbird.net>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-06-16-19-17-06.gh-issue-105866.0NBveV.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-16-19-17-06.gh-issue-105866.0NBveV.rst b/Misc/NEWS.d/next/Library/2023-06-16-19-17-06.gh-issue-105866.0NBveV.rst new file mode 100644 index 0000000..28eae12 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-06-16-19-17-06.gh-issue-105866.0NBveV.rst @@ -0,0 +1 @@ +Fixed ``_get_slots`` bug which caused error when defining dataclasses with slots and a weakref_slot. |