| dis | index /usr/lib/python2.1/dis.py |
Disassembler of Python byte code into mnemonics.
| Modules | ||||||
| ||||||
| Functions | ||
| ||
| Data | ||
| EXTENDED_ARG = 143 HAVE_ARGUMENT = 90 SET_LINENO = 127 __all__ = ['dis', 'disassemble', 'distb', 'disco', 'opname', 'cmp_op', 'hasconst', 'hasname', 'hasjrel', 'hasjabs', 'haslocal', 'hascompare', 'hasfree'] __file__ = '/usr/lib/python2.1/dis.pyc' __name__ = 'dis' cmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is', 'is not', 'exception match', 'BAD') hascompare = [106] hasconst = [100] hasfree = [135, 136, 137] hasjabs = [113, 119] hasjrel = [110, 111, 112, 114, 120, 121, 122] haslocal = [124, 125, 126] hasname = [90, 91, 95, 96, 97, 98, 101, 105, 107, 108, 116] op = 255 opname = ['STOP_CODE', 'POP_TOP', 'ROT_TWO', 'ROT_THREE', 'DUP_TOP', 'ROT_FOUR', '<6>', '<7>', '<8>', '<9>', 'UNARY_POSITIVE', 'UNARY_NEGATIVE', 'UNARY_NOT', 'UNARY_CONVERT', '<14>', 'UNARY_INVERT', '<16>', '<17>', '<18>', 'BINARY_POWER', ...] | ||