diff options
author | James Hilton-Balfe <gobot1234yt@gmail.com> | 2023-04-23 19:24:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-23 19:24:30 (GMT) |
commit | 730bbddfdf610343a2e132b0312d12254c3c73d6 (patch) | |
tree | 2c4b223f290866cc428d3faa0a7cf97c75128cb8 /Doc/whatsnew | |
parent | 05b3ce7339b9ce44eec728e88e80ba1f125436ed (diff) | |
download | cpython-730bbddfdf610343a2e132b0312d12254c3c73d6.zip cpython-730bbddfdf610343a2e132b0312d12254c3c73d6.tar.gz cpython-730bbddfdf610343a2e132b0312d12254c3c73d6.tar.bz2 |
gh-101688: Implement types.get_original_bases (#101827)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index b98b715..d16c496 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -407,6 +407,13 @@ threading profiling functions in all running threads in addition to the calling one. (Contributed by Pablo Galindo in :gh:`93503`.) +types +----- + +* Add :func:`types.get_original_bases` to allow for further introspection of + :ref:`user-defined-generics` when subclassed. (Contributed by + James Hilton-Balfe and Alex Waygood in :gh:`101827`.) + unicodedata ----------- |