Searched defs:PyCodeObject (Results 1 – 4 of 4) sorted by relevance
18 struct PyCodeObject { struct20 int co_argcount; /* #arguments, except *args */21 int co_posonlyargcount; /* #positional only arguments */22 int co_kwonlyargcount; /* #keyword only arguments */23 int co_nlocals; /* #local variables */24 int co_stacksize; /* #entries needed for evaluation stack */25 int co_flags; /* CO_..., see below */26 int co_firstlineno; /* first source line number */27 PyObject *co_code; /* instruction opcodes */28 PyObject *co_consts; /* list (constants used) */[all …]
9 typedef struct PyCodeObject PyCodeObject; typedef
60 absl::Span<std::pair<PyCodeObject*, int> const> garbage) { in AddGarbage()
30 } PyCodeObject; typedef