PyCode_CheckLineNumber method

int PyCode_CheckLineNumber(
  1. Pointer<PyCodeObject> co,
  2. int lasti,
  3. Pointer<PyAddrPair> bounds
)

Implementation

int PyCode_CheckLineNumber(
  ffi.Pointer<PyCodeObject> co,
  int lasti,
  ffi.Pointer<PyAddrPair> bounds,
) {
  return _PyCode_CheckLineNumber(
    co,
    lasti,
    bounds,
  );
}