PyFloat_FromString method

Pointer<PyObject> PyFloat_FromString(
  1. Pointer<PyObject> arg0
)

Implementation

ffi.Pointer<PyObject> PyFloat_FromString(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyFloat_FromString(
    arg0,
  );
}