MCPcopy Index your code
hub / github.com/python/cpython / make

Method make

Lib/dis.py:383–388  ·  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

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

Callers

nothing calls this directly

Calls 1

InstructionClass · 0.70

Tested by

no test coverage detected