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 85c6f6a commit f451047Copy full SHA for f451047
PythonForDelphi/Components/Sources/Core/PythonEngine.pas
@@ -9720,6 +9720,7 @@ function PyType_HasFeature(AType : PPyTypeObject; AFlag : Integer) : Boolean;
9720
procedure MaskFPUExceptions(ExceptionsMasked : boolean;
9721
MatchPythonPrecision : Boolean);
9722
begin
9723
+ {$IFNDEF CPUARM}
9724
if MatchPythonPrecision then begin
9725
if ExceptionsMasked then
9726
Set8087CW($1232 or $3F)
@@ -9731,6 +9732,7 @@ procedure MaskFPUExceptions(ExceptionsMasked : boolean;
9731
9732
else
9733
Set8087CW($1332);
9734
end;
9735
+ {$ENDIF}
9736
9737
9738
{$IFDEF MSWINDOWS}
0 commit comments