create abstract method

int create(
  1. String code, {
  2. String? externalFunctions,
  3. String? scriptName,
})

Creates a handle from Python code.

If externalFunctions is non-null, it is a comma-separated list of external function names.

If scriptName is non-null, it overrides the default filename used in tracebacks and error messages.

Returns the handle address as an int, or throws on error.

Implementation

int create(String code, {String? externalFunctions, String? scriptName});