mirror of https://github.com/python/cpython
added new.classobj()
This commit is contained in:
parent
c0fd1c0b83
commit
b28911cdef
|
@ -144,6 +144,24 @@ new_module(unused, args)
|
||||||
return newmoduleobject(name);
|
return newmoduleobject(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char new_class_doc[] =
|
||||||
|
"Create a class object from (NAME, BASE_CLASSES, DICT).";
|
||||||
|
|
||||||
|
static object *
|
||||||
|
new_class(unused, args)
|
||||||
|
object* unused;
|
||||||
|
object* args;
|
||||||
|
{
|
||||||
|
object * name;
|
||||||
|
object * classes;
|
||||||
|
object * dict;
|
||||||
|
|
||||||
|
if (!newgetargs(args, "SO!O!", &name, &Tupletype, &classes,
|
||||||
|
&Mappingtype, &dict))
|
||||||
|
return NULL;
|
||||||
|
return newclassobject(classes, dict, name);
|
||||||
|
}
|
||||||
|
|
||||||
static struct methodlist new_methods[] = {
|
static struct methodlist new_methods[] = {
|
||||||
{"instancemethod", new_instancemethod, 1, new_im_doc},
|
{"instancemethod", new_instancemethod, 1, new_im_doc},
|
||||||
#if 0
|
#if 0
|
||||||
|
@ -151,6 +169,7 @@ static struct methodlist new_methods[] = {
|
||||||
#endif
|
#endif
|
||||||
{"code", new_code, 1, new_code_doc},
|
{"code", new_code, 1, new_code_doc},
|
||||||
{"module", new_module, 1, new_module_doc},
|
{"module", new_module, 1, new_module_doc},
|
||||||
|
{"classobj", new_class, 1, new_class_doc},
|
||||||
{NULL, NULL} /* sentinel */
|
{NULL, NULL} /* sentinel */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue