We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bddf7c8 commit 0599a88Copy full SHA for 0599a88
Source/PythonEngine.pas
@@ -611,14 +611,23 @@ TPythonVersionProp = record
611
m_copy : PPyObject;
612
end;
613
614
+ // Slots are used for two phase module initialization
615
+ // which is not yet implemented
616
+
617
+ PPyModuleDef_Slot = ^PyModuleDef_Slot;
618
+ PyModuleDef_Slot = {$IFDEF CPUX86}packed{$ENDIF} record
619
+ slot: integer;
620
+ value: Pointer;
621
+ end;
622
623
PPyModuleDef = ^PyModuleDef;
624
PyModuleDef = {$IFDEF CPUX86}packed{$ENDIF} record
625
m_base : PyModuleDef_Base;
626
m_name : PAnsiChar;
627
m_doc : PAnsiChar;
628
m_size : NativeInt;
629
m_methods : PPyMethodDef;
- m_reload : inquiry;
630
+ m_slots : PPyModuleDef_Slot;
631
m_traverse : traverseproc;
632
m_clear : inquiry;
633
m_free : inquiry;
0 commit comments