varInteger: Result := PyLong_FromLong( DeRefV );
varInt64: Result := PyLong_FromLongLong( DeRefV );
FPC shows error here-- DeRefV is Variant, but it wants NativeInt (ie C_Long on linux x64). I added typecast to LongInt and now its ok.
varInteger: Result := PyLong_FromLong( LongInt(DeRefV) );
FPC shows error here-- DeRefV is Variant, but it wants NativeInt (ie C_Long on linux x64). I added typecast to LongInt and now its ok.