factor out constant

This commit is contained in:
Benjamin Peterson 2010-04-04 23:26:50 +00:00
parent 061913edb6
commit 6ef9a844f2
1 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,8 @@ __all__ = ["dis", "disassemble", "distb", "disco",
"findlinestarts", "findlabels"] + _opcodes_all
del _opcodes_all
_have_code = (types.MethodType, types.FunctionType, types.CodeType, type)
def dis(x=None):
"""Disassemble classes, methods, functions, or code.
@ -26,8 +28,7 @@ def dis(x=None):
if hasattr(x, '__dict__'):
items = sorted(x.__dict__.items())
for name, x1 in items:
if isinstance(x1, (types.MethodType, types.FunctionType,
types.CodeType, type)):
if isinstance(x1, _have_code):
print("Disassembly of %s:" % name)
try:
dis(x1)