summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAviel Boag <avboag@gmail.com>2024-03-19 00:53:14 (GMT)
committerGitHub <noreply@github.com>2024-03-19 00:53:14 (GMT)
commita22d05f04c074dbb4f71e7837f54c0bb693db75d (patch)
treea7634e879f7d77156e15f73402924ff21c92b976 /Misc
parent1d82a41235ac5619d36ac7e289fcbb686c1d9350 (diff)
downloadcpython-a22d05f04c074dbb4f71e7837f54c0bb693db75d.zip
cpython-a22d05f04c074dbb4f71e7837f54c0bb693db75d.tar.gz
cpython-a22d05f04c074dbb4f71e7837f54c0bb693db75d.tar.bz2
gh-105866: fix dataclass with slots=True, weakref_slot=True (#105870)
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.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.rst1
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.