config root man

Current Path : /usr/local/lib/python2.5/test/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/lib/python2.5/test/test_code.pyc

łň
h”Rc@s(dZd„Zd„Zdd„ZdS(sĂThis module includes tests of the code object representation.

>>> def f(x):
...     def g(y):
...         return x + y
...     return g
...

>>> dump(f.func_code)
name: f
argcount: 1
names: ()
varnames: ('x', 'g')
cellvars: ('x',)
freevars: ()
nlocals: 2
flags: 3
consts: ('None', '<code object g>')

>>> dump(f(4).func_code)
name: g
argcount: 1
names: ()
varnames: ('y',)
cellvars: ()
freevars: ('x',)
nlocals: 1
flags: 19
consts: ('None',)

>>> def h(x, y):
...     a = x + y
...     b = x - y
...     c = a * b
...     return c
...
>>> dump(h.func_code)
name: h
argcount: 2
names: ()
varnames: ('x', 'y', 'a', 'b', 'c')
cellvars: ()
freevars: ()
nlocals: 5
flags: 67
consts: ('None',)

>>> def attrs(obj):
...     print obj.attr1
...     print obj.attr2
...     print obj.attr3

>>> dump(attrs.func_code)
name: attrs
argcount: 1
names: ('attr1', 'attr2', 'attr3')
varnames: ('obj',)
cellvars: ()
freevars: ()
nlocals: 1
flags: 67
consts: ('None',)

>>> def optimize_away():
...     'doc string'
...     'not a docstring'
...     53
...     53L

>>> dump(optimize_away.func_code)
name: optimize_away
argcount: 0
names: ()
varnames: ()
cellvars: ()
freevars: ()
nlocals: 0
flags: 67
consts: ("'doc string'", 'None')

ccsFx?|D]7}t|ƒ}|idƒod|iVq|VqWdS(s.Yield a doctest-safe sequence of object reprs.s<code objects<code object %s>N(treprt
startswithtco_name(tttelttr((s*/usr/local/lib/python2.5/test/test_code.pytconstsSscCsaxBddddddddgD]"}d	|t|d
|ƒfGHqWdGtt|iƒƒGHdS(
s1Print out a text representation of a code object.tnametargcounttnamestvarnamestcellvarstfreevarstnlocalstflagss%s: %stco_sconsts:N(tgetattrttupleRt	co_consts(tcotattr((s*/usr/local/lib/python2.5/test/test_code.pytdump\s

 cCs1ddkl}ddkl}|||ƒdS(Ni˙˙˙˙(trun_doctest(t	test_code(ttest.test_supportRttestR(tverboseRR((s*/usr/local/lib/python2.5/test/test_code.pyt	test_maincsN(t__doc__RRtNoneR(((s*/usr/local/lib/python2.5/test/test_code.pys<module>Qs			

Man Man