pyConvertInt function Null safety

Pointer<PyObject> pyConvertInt (
  1. int o
)

Converts an int to a python int

Implementation

Pointer<PyObject> pyConvertInt(int o) {
  return dartpyc.PyLong_FromLong(o);
}