MCPcopy Index your code
hub / github.com/RustPython/RustPython / make

Method make

Lib/dis.py:382–387  ·  view source on GitHub ↗
(
        opname, arg, argval, argrepr, offset, start_offset, starts_line,
        line_number, label=None, positions=None, cache_info=None
    )

Source from the content-addressed store, hash-verified

380
381 @staticmethod
382 def make(
383 opname, arg, argval, argrepr, offset, start_offset, starts_line,
384 line_number, label=None, positions=None, cache_info=None
385 ):
386 return Instruction(opname, _all_opmap[opname], arg, argval, argrepr, offset,
387 start_offset, starts_line, line_number, label, positions, cache_info)
388
389 @property
390 def oparg(self):

Callers

nothing calls this directly

Calls 1

InstructionClass · 0.70

Tested by

no test coverage detected