gh-149044: Implement PEP 820 – PySlot: Unified slot system for the C API (GH-149055)

Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
This commit is contained in:
Petr Viktorin 2026-05-05 09:18:04 +02:00 committed by GitHub
parent 5dd2161716
commit 508b49845d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
56 changed files with 5433 additions and 935 deletions

1
PC/python3dll.c generated
View file

@ -681,6 +681,7 @@ EXPORT_FUNC(PyType_ClearCache)
EXPORT_FUNC(PyType_Freeze)
EXPORT_FUNC(PyType_FromMetaclass)
EXPORT_FUNC(PyType_FromModuleAndSpec)
EXPORT_FUNC(PyType_FromSlots)
EXPORT_FUNC(PyType_FromSpec)
EXPORT_FUNC(PyType_FromSpecWithBases)
EXPORT_FUNC(PyType_GenericAlloc)