File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -1864,7 +1864,6 @@ TPythonInterface=class(TDynamicDll)
1864
1864
PyOS_InterruptOccurred:function :integer; cdecl;
1865
1865
PyObject_CallObject:function (ob,args:PPyObject):PPyObject; cdecl;
1866
1866
PyObject_CallMethod : function ( obj : PPyObject; method, format : PAnsiChar { ...} ) : PPyObject; cdecl varargs;
1867
- PyObject_CallMethodStr: function ( obj : PPyObject; method, format, value : PAnsiChar ) : PPyObject; cdecl;
1868
1867
PyObject_Compare: function (ob1,ob2:PPyObject):integer; cdecl;
1869
1868
PyObject_RichCompare:function (ob1,ob2:PPyObject;opid:integer):PPyObject; cdecl;
1870
1869
PyObject_RichCompareBool:function (ob1,ob2:PPyObject;opid:integer):Integer; cdecl;
@@ -3932,7 +3931,6 @@ procedure TPythonInterface.MapDll;
3932
3931
PyOS_InterruptOccurred :=Import (' PyOS_InterruptOccurred' );
3933
3932
PyObject_CallObject :=Import (' PyObject_CallObject' );
3934
3933
PyObject_CallMethod :=Import (' PyObject_CallMethod' );
3935
- PyObject_CallMethodStr :=Import (' PyObject_CallMethod' );
3936
3934
if not IsPython3000 then
3937
3935
PyObject_Compare :=Import (' PyObject_Compare' );
3938
3936
PyObject_RichCompare :=Import (' PyObject_RichCompare' );
Original file line number Diff line number Diff line change @@ -6,12 +6,7 @@ interface
6
6
7
7
uses
8
8
Classes,
9
- { $IFDEF MSWINDOWS}
10
9
Graphics, ExtCtrls,
11
- { $ENDIF}
12
- { $IFDEF LINUX}
13
- QGraphics, QExtCtrls,
14
- { $ENDIF}
15
10
PythonEngine;
16
11
17
12
type
Original file line number Diff line number Diff line change @@ -40,12 +40,7 @@ implementation
40
40
uses
41
41
VarPyth;
42
42
43
- { $IFDEF MSWINDOWS}
44
43
{ $R *.DFM}
45
- { $ENDIF}
46
- { $IFDEF LINUX}
47
- { $R *.xfm}
48
- { $ENDIF}
49
44
50
45
procedure TForm1.Button1Click (Sender: TObject);
51
46
var
You can’t perform that action at this time.
0 commit comments