8000 [3.12] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) by JelleZijlstra · Pull Request #119644 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.12] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) #119644

New issue

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

Merged
merged 3 commits into from
Jun 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
manually update ABI?
  • Loading branch information
JelleZijlstra committed Jun 4, 2024
commit 1e682f240dcbf110a5be411b855f6c8b8204bc39
5 changes: 4 additions & 1 deletion Doc/data/python3.12.abi
Original file line number Diff line number Diff line change
Expand Up @@ -22611,7 +22611,7 @@
<var-decl name='recursion_limit' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='50' column='1'/>
</data-member>
</class-decl>
<class-decl name='_symtable_entry' size-in-bits='960' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='53' column='1' id='type-id-1397'>
<class-decl name='_symtable_entry' size-in-bits='1024' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='53' column='1' id='type-id-1397'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='ob_base' type-id='type-id-345' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='54' column='1'/>
</data-member>
Expand Down Expand Up @@ -22702,6 +22702,9 @@
<data-member access='public' layout-offset-in-bits='896'>
<var-decl name='ste_table' type-id='type-id-209' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='89' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='960'>
<var-decl name='ste_mangled_names' type-id='type-id-2' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='90' column='1'/>
</data-member>
</class-decl>
<typedef-decl name='PySTEntryObject' type-id='type-id-1397' filepath='./Include/internal/pycore_symtable.h' line='90' column='1' id='type-id-1398'/>
<typedef-decl name='basicblock' type-id='type-id-1386' filepath='Python/compile.c' line='90' column='1' id='type-id-1399'/>
Expand Down
0