Lines Matching refs:co_consts
204 if co.co_consts:
206 for i_c in enumerate(co.co_consts):
349 co.co_names, co.co_consts,
354 def _get_const_value(op, arg, co_consts):
358 Otherwise (if it is a LOAD_CONST and co_consts is not
365 if co_consts is not None:
366 argval = co_consts[arg]
369 def _get_const_info(op, arg, co_consts):
377 argval = _get_const_value(op, arg, co_consts)
424 names=None, co_consts=None,
432 (e.g. variable names, co_consts) can be specified using optional
460 argval, argrepr = _get_const_info(deop, arg, co_consts)
525 co.co_names, co.co_consts, linestarts, file=file,
534 for x in co.co_consts:
543 names=None, co_consts=None, linestarts=None,
562 co_consts, linestarts,
661 consts = co.co_consts
717 co.co_names, co.co_consts,
751 names=co.co_names, co_consts=co.co_consts,