summaryrefslogtreecommitdiffstats
path: root/Lib/dis.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-30 02:07:00 (GMT)
committerGuido van Rossum <guido@python.org>2007-05-30 02:07:00 (GMT)
commit3e1b85ead189a33dc20c190bfe6428c991a8ee04 (patch)
tree0a813cefd641333cac2f6db2a4417902971457cf /Lib/dis.py
parentdc089b6d0756074c966d680bd62276c09bbf80a5 (diff)
downloadcpython-3e1b85ead189a33dc20c190bfe6428c991a8ee04.zip
cpython-3e1b85ead189a33dc20c190bfe6428c991a8ee04.tar.gz
cpython-3e1b85ead189a33dc20c190bfe6428c991a8ee04.tar.bz2
Add a helper to display the various flags and components of code objects
(everything besides the actual code disassembly).
Diffstat (limited to 'Lib/dis.py')
-rw-r--r--Lib/dis.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py
index 90544f4..f274606 100644
--- a/Lib/dis.py
+++ b/Lib/dis.py
@@ -55,6 +55,62 @@ def distb(tb=None):
while tb.tb_next: tb = tb.tb_next
disassemble(tb.tb_frame.f_code, tb.tb_lasti)
+# XXX This duplicates information from code.h, also duplicated in inspect.py.
+# XXX Maybe this ought to be put in a central location, like opcode.py?
+flag2name = {
+ 1: "OPTIMIZED",
+ 2: "NEWLOCALS",
+ 4: "VARARGS",
+ 8: "VARKEYWORDS",
+ 16: "NESTED",
+ 32: "GENERATOR",
+ 64: "NOFREE",
+}
+
+def pretty_flags(flags):
+ """Return pretty representation of code flags."""
+ names = []
+ for i in range(32):
+ flag = 1<<i
+ if flags & flag:
+ names.append(flag2name.get(flag, hex(flag)))
+ flags ^= flag
+ if not flags:
+ break
+ else:
+ names.append(hex(flags))
+ return ", ".join(names)
+
+def show_code(co):
+ """Show details about a code object."""
+ print("Name: ", co.co_name)
+ print("Filename: ", co.co_filename)
+ print("Argument count: ", co.co_argcount)
+ print("Kw-only arguments:", co.co_kwonlyargcount)
+ print("Number of locals: ", co.co_nlocals)
+ print("Stack size: ", co.co_stacksize)
+ print("Flags: ", pretty_flags(co.co_flags))
+ if co.co_consts:
+ print("Constants:")
+ for i_c in enumerate(co.co_consts):
+ print("%4d: %r" % i_c)
+ if co.co_names:
+ print("Names:")
+ for i_n in enumerate(co.co_names):
+ print("%4d: %s" % i_n)
+ if co.co_varnames:
+ print("Variable names:")
+ for i_n in enumerate(co.co_varnames):
+ print("%4d: %s" % i_n)
+ if co.co_freevars:
+ print("Free variables:")
+ for i_n in enumerate(co.co_freevars):
+ print("%4d: %s" % i_n)
+ if co.co_cellvars:
+ print("Cell variables:")
+ for i_n in enumerate(co.co_cellvars):
+ print("%4d: %s" % i_n)
+
def disassemble(co, lasti=-1):
"""Disassemble a code object."""
code = co.co_code