Searched refs:co_argcount (Results 1 - 16 of 16) sorted by relevance
/third_party/python/Objects/clinic/ |
H A D | codeobject.c.h | 160 "replace($self, /, *, co_argcount=-1, co_posonlyargcount=-1,\n" 174 code_replace_impl(PyCodeObject *self, int co_argcount, 189 static const char * const _keywords[] = {"co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_qualname", "co_linetable", "co_exceptiontable", NULL}; in code_replace() 193 int co_argcount = self->co_argcount; in code_replace() local 220 co_argcount = _PyLong_AsInt(args[0]); in code_replace() 221 if (co_argcount == -1 && PyErr_Occurred()) { in code_replace() 397 return_value = code_replace_impl(self, co_argcount, co_posonlyargcount, co_kwonlyargcount, co_nlocals, co_stacksize, co_flags, co_firstlineno, co_code, co_consts, co_names, co_varnames, co_freevars, co_cellvars, co_filename, co_name, co_qualname, co_linetable, co_exceptiontable); in code_replace()
|
/third_party/python/Objects/ |
H A D | codeobject.c | 318 co->co_argcount = con->argcount; in init_code() 1685 eq = co->co_argcount == cp->co_argcount; in code_richcompare() 1780 co->co_argcount ^ co->co_posonlyargcount ^ co->co_kwonlyargcount ^ in code_hash() 1790 {"co_argcount", T_INT, OFF(co_argcount), READONLY}, 1881 co_argcount: int(c_default="self->co_argcount") = -1 1904 code_replace_impl(PyCodeObject *self, int co_argcount, in code_replace_impl() argument 1923 CHECK_INT_ARG(co_argcount); in code_replace_impl() [all...] |
H A D | typeobject.c | 8989 if (co->co_argcount == 0) { in super_init_without_args()
|
/third_party/python/Include/cpython/ |
H A D | code.h | 42 * - co_argcount \ 69 int co_argcount; /* #arguments, except *args */ \
|
/third_party/jinja2/ |
H A D | debug.py | 125 code.co_argcount,
|
/third_party/python/Lib/test/ |
H A D | test_positional_only_arg.py | 103 self.assertEqual(5, f.__code__.co_argcount) # 3 posonly + 2 "standard args" 110 self.assertEqual(5, f.__code__.co_argcount) # 3 posonly + 2 "standard args"
|
H A D | test_code.py | 224 CodeType(co.co_argcount, 263 ("co_argcount", 0), 300 CodeType(co.co_argcount,
|
H A D | test_subprocess.py | 301 argcount = subprocess.Popen.__init__.__code__.co_argcount
|
/third_party/python/Python/ |
H A D | ceval.c | 2250 assert(code->co_argcount == 2); 4852 DEOPT_IF(code->co_argcount != argcount, CALL); 4886 DEOPT_IF(argcount > code->co_argcount, CALL); 4899 for (int i = argcount; i < code->co_argcount; i++) { 4905 for (int i = code->co_argcount; i < code->co_nlocalsplus; i++) { 5924 end = co->co_argcount - defcount; 5927 start = co->co_argcount; 5955 Py_ssize_t co_argcount = co->co_argcount; local 5959 for (i = co_argcount; [all...] |
H A D | specialize.c | 1230 if (fcode->co_argcount != 2) { in _Py_Specialize_BinarySubscr() 1501 int argcount = code->co_argcount; in specialize_py_call()
|
H A D | marshal.c | 559 w_long(co->co_argcount, p); in w_complex_object()
|
/third_party/python/Tools/scripts/ |
H A D | umarshal.py | 277 retval.co_argcount = self.r_long()
|
/third_party/python/Lib/ |
H A D | dis.py | 198 lines.append("Argument count: %s" % co.co_argcount)
|
H A D | inspect.py | 484 co_argcount number of arguments (not including *, ** args 1316 nargs = co.co_argcount 2354 pos_count = func_code.co_argcount
|
H A D | pdb.py | 1218 n = co.co_argcount + co.co_kwonlyargcount
|
/third_party/python/Lib/unittest/ |
H A D | mock.py | 2215 code_mock.co_argcount = 0
|
Completed in 48 milliseconds