Return the C expression for a call to `fn`'s Python-wrapper (CPyPy_) entry. Like `native_function_call`, but for the PyObject-level wrapper that boxes/unboxes arguments. Used from slot generators (tp_init, etc.).
(self, fn: FuncDecl)
| 403 | return f"{self.get_group_prefix(fn)}{self.native_function_name(fn)}" |
| 404 | |
| 405 | def wrapper_function_call(self, fn: FuncDecl) -> str: |
| 406 | """Return the C expression for a call to `fn`'s Python-wrapper (CPyPy_) entry. |
| 407 | |
| 408 | Like `native_function_call`, but for the PyObject-level wrapper that |
| 409 | boxes/unboxes arguments. Used from slot generators (tp_init, etc.). |
| 410 | """ |
| 411 | return f"{self.get_group_prefix(fn)}{PREFIX}{fn.cname(self.names)}" |
| 412 | |
| 413 | def tuple_c_declaration(self, rtuple: RTuple) -> list[str]: |
| 414 | result = [ |
no test coverage detected