Hello @IVLIVS-III, I wanted to ask a couple of questions about the solution and I would be greatful for your responce:
- In what process does the python code run? Is Python runtime hosted within Flutter or some other process?
- Are there any risks of memory leaks? Does the process of releasing memory is properly taken care of or there are certain practices that much be followed?
Are there any potential memory leaks in the following code from your examples?
void primitivesSqrt() {
final PrimitivesModule primitivesModule = PrimitivesModule.import();
final int sqrt = primitivesModule.sqrt(9);
debugPrint("Sqrt: $sqrt");
}
- Could there be a problem bundling Python-FFI in release configurations? I.e. do you know of any potential problems with signing macOS app bundle?
Hello @IVLIVS-III, I wanted to ask a couple of questions about the solution and I would be greatful for your responce:
Are there any potential memory leaks in the following code from your examples?