MCPcopy Index your code
hub / github.com/python/mypy / real_args

Method real_args

mypyc/ir/func_ir.py:95–99  ·  view source on GitHub ↗

Return arguments without any synthetic bitmap arguments.

(self)

Source from the content-addressed store, hash-verified

93 self.args = self.args + tuple(reversed(extra))
94
95 def real_args(self) -> tuple[RuntimeArg, ...]:
96 """Return arguments without any synthetic bitmap arguments."""
97 if self.num_bitmap_args:
98 return self.args[: -self.num_bitmap_args]
99 return self.args
100
101 def bound_sig(self) -> FuncSignature:
102 if self.num_bitmap_args:

Callers 1

check_native_overrideFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected