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