#4222: document dis.findlabels() and dis.findlinestarts() and

put them into dis.__all__.
This commit is contained in:
Georg Brandl 2009-01-01 12:09:40 +00:00
parent 2adde0551a
commit 775c307068
2 changed files with 17 additions and 3 deletions

View file

@ -6,7 +6,8 @@ import types
from opcode import *
from opcode import __all__ as _opcodes_all
__all__ = ["dis","disassemble","distb","disco"] + _opcodes_all
__all__ = ["dis", "disassemble", "distb", "disco",
"findlinestarts", "findlabels"] + _opcodes_all
del _opcodes_all
def dis(x=None):