Home
last modified time | relevance | path

Searched refs:u_argcount (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c113 int u_argcount; /* number of arguments for block */ member
476 u->u_argcount = 0; in compiler_enter_scope()
1383 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_function()
1519 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_lambda()
2679 c->u->u_argcount = 1; in compiler_comprehension_generator()
3855 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
/external/python/cpython3/Python/
Dcompile.c122 Py_ssize_t u_argcount; /* number of arguments for block */ member
554 u->u_argcount = 0; in compiler_enter_scope()
1939 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_function()
2270 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_lambda()
3840 c->u->u_argcount = 1; in compiler_sync_comprehension_generator()
3938 c->u->u_argcount = 1; in compiler_async_comprehension_generator()
5420 argcount = Py_SAFE_DOWNCAST(c->u->u_argcount, Py_ssize_t, int); in makecode()