File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -3021,9 +3021,8 @@ function CleanString(const s : UnicodeString; AppendLF : Boolean = True) : Unico
3021
3021
implementation
3022
3022
3023
3023
uses
3024
- { $IFDEF FPC}
3025
3024
StrUtils,
3026
- { $ELSE }
3025
+ { $IFNDEF FPC }
3027
3026
AnsiStrings,
3028
3027
{ $ENDIF}
3029
3028
{ $IFDEF MSWINDOWS}
@@ -4660,15 +4659,15 @@ procedure TPythonEngine.Initialize;
4660
4659
4661
4660
procedure SetPythonPath (var Config: PyConfig);
4662
4661
var
4663
- Paths: TArray<string> ;
4662
+ Paths: TStringDynArray ;
4664
4663
I: Integer;
4665
4664
PWSL: PPyWideStringList;
4666
4665
begin
4667
4666
if FPythonPath = ' ' then Exit;
4668
4667
4669
4668
PWSL := PPyWideStringList(PByte(@Config) + ConfigOffests[MinorVersion,
4670
4669
TConfigFields.module_search_paths]);
4671
- Paths := string(FPythonPath).Split([ PathSep] );
4670
+ Paths := SplitString( string(FPythonPath), PathSep);
4672
4671
for I := 0 to Length(Paths) - 1 do
4673
4672
begin
4674
4673
if (Paths[I] = ' ' ) and (I > 0 ) then
You can’t perform that action at this time.
0 commit comments