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