def LOAD_CONST(ctx: _VSContext, instruction: dis.Instruction): """ Loads a const from `ctx.co_consts`. """ ctx.push(ctx.co_consts[instruction.arg]) return ctx