| |
- classobj(no arg info)
- Create a class object from (NAME, BASE_CLASSES, DICT).
- code(no arg info)
- Create a code object from (ARGCOUNT, NLOCALS, STACKSIZE, FLAGS, CODESTRING, CONSTANTS, NAMES, VARNAMES, FILENAME, NAME, FIRSTLINENO, LNOTAB).
- function(no arg info)
- Create a function object from (CODE, GLOBALS, [NAME, ARGDEFS]).
- instance(no arg info)
- Create an instance object from (CLASS, DICT) without calling its __init__().
- instancemethod(no arg info)
- Create a instance method object from (FUNCTION, INSTANCE, CLASS).
- module(no arg info)
- Create a module object from (NAME).
|