PyCode_Optimize method

Pointer<PyObject> PyCode_Optimize(
  1. Pointer<PyObject> code,
  2. Pointer<PyObject> consts,
  3. Pointer<PyObject> names,
  4. Pointer<PyObject> lnotab,
)

Implementation

ffi.Pointer<PyObject> PyCode_Optimize(
  ffi.Pointer<PyObject> code,
  ffi.Pointer<PyObject> consts,
  ffi.Pointer<PyObject> names,
  ffi.Pointer<PyObject> lnotab,
) {
  return _PyCode_Optimize(
    code,
    consts,
    names,
    lnotab,
  );
}