blob: 4e6863856988fd88669391b0a30a8f7a835d095e [file] [log] [blame]
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001"""This module includes tests of the code object representation.
2
3>>> def f(x):
4... def g(y):
5... return x + y
6... return g
7...
8
9>>> dump(f.func_code)
10name: f
11argcount: 1
12names: ()
13varnames: ('x', 'g')
14cellvars: ('x',)
15freevars: ()
16nlocals: 2
17flags: 3
18consts: ('None', '<code object g>')
19
20>>> dump(f(4).func_code)
21name: g
22argcount: 1
23names: ()
24varnames: ('y',)
25cellvars: ()
26freevars: ('x',)
27nlocals: 1
28flags: 19
29consts: ('None',)
30
31>>> def h(x, y):
32... a = x + y
33... b = x - y
34... c = a * b
35... return c
Tim Peters536cf992005-12-25 23:18:31 +000036...
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000037>>> dump(h.func_code)
38name: h
39argcount: 2
40names: ()
41varnames: ('x', 'y', 'a', 'b', 'c')
42cellvars: ()
43freevars: ()
44nlocals: 5
45flags: 67
46consts: ('None',)
47
48>>> def attrs(obj):
49... print obj.attr1
50... print obj.attr2
51... print obj.attr3
52
53>>> dump(attrs.func_code)
54name: attrs
55argcount: 1
56names: ('attr1', 'attr2', 'attr3')
57varnames: ('obj',)
58cellvars: ()
59freevars: ()
60nlocals: 1
61flags: 67
62consts: ('None',)
63
Thomas Wouters0e3f5912006-08-11 14:57:12 +000064>>> def optimize_away():
65... 'doc string'
66... 'not a docstring'
67... 53
68... 53L
69
70>>> dump(optimize_away.func_code)
71name: optimize_away
72argcount: 0
73names: ()
74varnames: ()
75cellvars: ()
76freevars: ()
77nlocals: 0
78flags: 67
79consts: ("'doc string'", 'None')
80
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000081"""
82
83def consts(t):
84 """Yield a doctest-safe sequence of object reprs."""
85 for elt in t:
86 r = repr(elt)
87 if r.startswith("<code object"):
88 yield "<code object %s>" % elt.co_name
89 else:
90 yield r
91
92def dump(co):
93 """Print out a text representation of a code object."""
94 for attr in ["name", "argcount", "names", "varnames", "cellvars",
95 "freevars", "nlocals", "flags"]:
96 print "%s: %s" % (attr, getattr(co, "co_" + attr))
97 print "consts:", tuple(consts(co.co_consts))
98
99def test_main(verbose=None):
100 from test.test_support import run_doctest
101 from test import test_code
102 run_doctest(test_code, verbose)