FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

bpo-46417: Add _PyType_GetSubclasses() function by vstinner · Pull Request #30761 · python/cpython · GitHub

/ cpython Public

bpo-46417: Add _PyType_GetSubclasses() function - #30761

Merged
vstinner merged 1 commit into
python:mainfrom
vstinner:get_subclasses
Jan 21, 2022
Merged

bpo-46417: Add _PyType_GetSubclasses() function#30761
vstinner merged 1 commit into
python:mainfrom
vstinner:get_subclasses

Conversation

vstinner commented Jan 21, 2022
edited by bedevere-bot
Loading

Copy link
Copy Markdown
Member

Add a new _PyType_GetSubclasses() function to get type's subclasses.

_PyType_GetSubclasses(type) returns a list which holds strong
refererences to subclasses. It is safer than iterating on
type->tp_subclasses which yields weak references and can be modified
during the iteration.

_PyType_GetSubclasses(type) now holds a reference to tp_subclasses
dict while creating the list of subclasses.

set_collection_flag_recursive() of _abc.c now uses
_PyType_GetSubclasses().

https://bugs.python.org/issue46417

Add a new _PyType_GetSubclasses() function to get type's subclasses.

_PyType_GetSubclasses(type) returns a list which holds strong
refererences to subclasses. It is safer than iterating on
type->tp_subclasses which yields weak references and can be modified
during the iteration.

_PyType_GetSubclasses(type) now holds a reference to tp_subclasses
dict while creating the list of subclasses.

set_collection_flag_recursive() of _abc.c now uses
_PyType_GetSubclasses().
vstinner merged commit 8ee07dd into python:main Jan 21, 2022
vstinner deleted the get_subclasses branch January 21, 2022 22:29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants


Back | FazBrowse Home | New Git URL