We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c80315f commit 7bada0dCopy full SHA for 7bada0d
python4lazarus/PythonEngine.pas
@@ -4028,10 +4028,15 @@ destructor TPythonEngine.Destroy;
4028
GlobalVars := nil;
4029
Destroying;
4030
Finalize;
4031
+{$IFDEF FPC} // See https://github.com/Alexey-T/Python-for-Lazarus/issues/29
4032
+ inherited;
4033
+{$ENDIF}
4034
FClients.Free;
4035
FInitScript.Free;
4036
FTraceback.Free;
4037
+{$IFNDEF FPC}
4038
inherited;
4039
4040
end;
4041
4042
procedure TPythonEngine.Finalize;
0 commit comments