We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
__dictrefoffset__
__weakoffset__
dataclasses
See #118099 (comment) and #118033
We now correctly check for __dictoffset__ and __weakoffset__ on C types without __slots__ defined:
__dictoffset__
__slots__
cpython/Lib/dataclasses.py
Lines 1201 to 1212 in c68acb1
But, not in this case:
Lines 1213 to 1218 in c68acb1
So, in theory there might be C types with __slots__ and __dictoffset__ and __weakoffset__.
I will investigate!
The text was updated successfully, but these errors were encountered:
weakref_slot
sobolevn
No branches or pull requests
Bug report
See #118099 (comment) and #118033
We now correctly check for
__dictoffset__
and__weakoffset__
on C types without__slots__
defined:cpython/Lib/dataclasses.py
Lines 1201 to 1212 in c68acb1
But, not in this case:
cpython/Lib/dataclasses.py
Lines 1213 to 1218 in c68acb1
So, in theory there might be C types with
__slots__
and__dictoffset__
and__weakoffset__
.I will investigate!
The text was updated successfully, but these errors were encountered: