Lines Matching defs:code
3 [clinic start generated code]*/
6 "function(code, globals, name=None, argdefs=None, closure=None)\n"
11 " code\n"
12 " a code object\n"
16 " a string that overrides the name from the code object\n"
23 func_new_impl(PyTypeObject *type, PyCodeObject *code, PyObject *globals,
30 static const char * const _keywords[] = {"code", "globals", "name", "argdefs", "closure", NULL};
36 PyCodeObject *code;
47 _PyArg_BadArgument("function", "argument 'code'", (&PyCode_Type)->tp_name, fastargs[0]);
50 code = (PyCodeObject *)fastargs[0];
73 return_value = func_new_impl(type, code, globals, name, defaults, closure);
78 /*[clinic end generated code: output=3d96afa3396e5c82 input=a9049054013a1b77]*/