Fix dis.__all__ for new additions to module in 3.2(spotted by Eli Bendersky)
This commit is contained in:
parent
8ce7df67de
commit
7646f7ef4a
|
@ -6,8 +6,8 @@ import types
|
||||||
from opcode import *
|
from opcode import *
|
||||||
from opcode import __all__ as _opcodes_all
|
from opcode import __all__ as _opcodes_all
|
||||||
|
|
||||||
__all__ = ["dis", "disassemble", "distb", "disco",
|
__all__ = ["code_info", "dis", "disassemble", "distb", "disco",
|
||||||
"findlinestarts", "findlabels"] + _opcodes_all
|
"findlinestarts", "findlabels", "show_code"] + _opcodes_all
|
||||||
del _opcodes_all
|
del _opcodes_all
|
||||||
|
|
||||||
_have_code = (types.MethodType, types.FunctionType, types.CodeType, type)
|
_have_code = (types.MethodType, types.FunctionType, types.CodeType, type)
|
||||||
|
|
Loading…
Reference in New Issue