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
inspect._getmembers
mro
This line https://github.com/python/cpython/blame/4d82f628c44490d6fbc3f6998d2473d1304d891f/Lib/inspect.py#L540 has this logic mro = (object,) + getmro(object)
mro = (object,) + getmro(object)
I don't think this is correct:
getmro
Introduced in 86a8a9a
The text was updated successfully, but these errors were encountered:
pythongh-99677: Deduplicate self-type in mro in inspect._getmembers
8ca5e0d
2653b82
sobolevn
No branches or pull requests
This line https://github.com/python/cpython/blame/4d82f628c44490d6fbc3f6998d2473d1304d891f/Lib/inspect.py#L540 has this logic
mro = (object,) + getmro(object)
I don't think this is correct:
getmro
returns MRO including self typeIntroduced in 86a8a9a
Linked PRs
mro
ininspect._getmembers
#99678The text was updated successfully, but these errors were encountered: