Home
last modified time | relevance | path

Searched defs:PyCodeObject (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Include/cpython/
Dcode.h18 struct PyCodeObject { struct
20 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 …]
/third_party/python/Include/
Dcode.h9 typedef struct PyCodeObject PyCodeObject; typedef