Module PyIR.CodeInfo

type t = {
  1. co_name : string;
  2. co_nlocals : int;
  3. co_argcount : int;
  4. co_posonlyargcount : int;
  5. co_kwonlyargcount : int;
  6. co_cellvars : string array;
  7. co_freevars : string array;
  8. co_names : string array;
  9. co_varnames : string array;
  10. has_star_arguments : bool;
  11. has_star_keywords : bool;
  12. is_generator : bool;
}