# opcode - pydoc - phpman

Help on module opcode:

## NAME
    opcode

## MODULE REFERENCE
    <https://docs.python.org/3.10/library/opcode.html>

    The following documentation is automatically generated from the Python
    source files.  It may be incomplete, incorrect or include features that
    are considered implementation detail and may vary between Python
    implementations.  When in doubt, consult the module reference at the
    location listed above.

## DESCRIPTION
    opcode module - potentially shared between dis and other modules which
    operate on bytecodes (e.g. peephole optimizers).

## FUNCTIONS
### stack_effect
        Compute the stack effect of the opcode.

## DATA
    EXTENDED_ARG = 144
    HAVE_ARGUMENT = 90
    __all__ = ['cmp_op', 'hasconst', 'hasname', 'hasjrel', 'hasjabs', 'has...
    cmp_op = ('<', '<=', '==', '!=', '>', '>=')
    hascompare = [107]
    hasconst = [100]
    hasfree = [135, 136, 137, 138, 148]
    hasjabs = [111, 112, 113, 114, 115, 121]
    hasjrel = [93, 110, 122, 143, 154]
    haslocal = [124, 125, 126]
    hasname = [90, 91, 95, 96, 97, 98, 101, 106, 108, 109, 116, 160]
    hasnargs = []
    opmap = {'BEFORE_ASYNC_WITH': 52, 'BINARY_ADD': 23, 'BINARY_AND': 64, ...
    opname = ['<0>', 'POP_TOP', 'ROT_TWO', 'ROT_THREE', 'DUP_TOP', 'DUP_TO...

## FILE
    /usr/lib/python3.10/opcode.py


