diff options
author | Georg Brandl <georg@python.org> | 2009-01-01 12:09:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-01 12:09:40 (GMT) |
commit | 775c30706882291fe6385066899f702f768ed95f (patch) | |
tree | e64dacc8ba3e477eb74ed44e26761c94226bddb2 /Lib | |
parent | 2adde0551a51002c9a43bfabf684be0c960ed192 (diff) | |
download | cpython-775c30706882291fe6385066899f702f768ed95f.zip cpython-775c30706882291fe6385066899f702f768ed95f.tar.gz cpython-775c30706882291fe6385066899f702f768ed95f.tar.bz2 |
#4222: document dis.findlabels() and dis.findlinestarts() and
put them into dis.__all__.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/dis.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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): |