From f02a629940ba3e3d9eccc9f7edf0a99940c5b2ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Ku=C4=8Dera?= Date: Tue, 7 Jan 2025 09:26:15 +0100 Subject: [PATCH] add PyGetSetDescr_Type --- Source/PythonEngine.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/PythonEngine.pas b/Source/PythonEngine.pas index 18928cf..163e405 100644 --- a/Source/PythonEngine.pas +++ b/Source/PythonEngine.pas @@ -1513,6 +1513,7 @@ type PySuper_Type: PPyTypeObject; PyTraceBack_Type: PPyTypeObject; PyUnicode_Type: PPyTypeObject; + PyGetSetDescr_Type: PPyTypeObject; PyWrapperDescr_Type: PPyTypeObject; _PyWeakref_RefType: PPyTypeObject; _PyWeakref_ProxyType: PPyTypeObject; @@ -3859,6 +3860,7 @@ begin PyStaticMethod_Type := Import('PyStaticMethod_Type'); PySuper_Type := Import('PySuper_Type'); PyTraceBack_Type := Import('PyTraceBack_Type'); + PyGetSetDescr_Type := Import('PyGetSetDescr_Type'); PyWrapperDescr_Type := Import('PyWrapperDescr_Type'); _PyWeakref_RefType := Import('_PyWeakref_RefType'); _PyWeakref_ProxyType := Import('_PyWeakref_ProxyType'); -- 2.25.1.windows.1