Lines Matching defs:co_nlocals
329 co->co_nlocals = nlocals;
606 "code: co_nlocals != len(co_varnames)");
1415 return get_localsplus_names(co, CO_FAST_LOCAL, co->co_nlocals);
1795 {"co_nlocals", T_INT, OFF(co_nlocals), READONLY},
1884 co_nlocals: int(c_default="self->co_nlocals") = -1
1906 int co_nlocals, int co_stacksize, int co_flags,
1926 CHECK_INT_ARG(co_nlocals);
1944 co_posonlyargcount, co_kwonlyargcount, co_nlocals,
1954 varnames = get_localsplus_names(self, CO_FAST_LOCAL, self->co_nlocals);
1976 co_argcount, co_posonlyargcount, co_kwonlyargcount, co_nlocals,