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_pkg.pyo

³ò
h”Rc@s/ddkZddkZddkZddkZddklZlZlZ[[ddklZl	Z	l
Z
d„Zd„Zd„Zd„Zd„Z
d	„Zd
d^deidd
fgdfdd_deiddfd`deidd
fdadeiddfgdfddbdeiddfdcdeidd
fdddeiddfgdfd d eidd!eid"fded#eiddfd$eidd%eid"fdfd&eidd
fd'eidd(eid"fdgd)eiddfg	d*fd+dhd,eidd-fd.eiddfd/eidd0fgd1fd2did3eidd4fd5eiddfd6eiddfd7eiddfgd8fd9d9eidd:eid;fdjd<eiddfd=eidd%eid"fdkd>eidd
fd?eidd(eid"fdld@eiddfg	dAfgZdBgdCdDdEfdFgdCdDdGfdHgdCdDdIfdJgdCdDdKfdLgdMdNdEfdOgdMdNdIfdPgdMdNdQfdRgdMdNdSfdTgdMdNdSfdUgdMdNdVfg
ZgZedWjo:eidXZeo"edYdZjodYZ	edY=qnxQeD]I\ZZZeoeejod[GeGHq—nd\GeGHeeeƒq—WddkZddkZyddkZWnej
onXe
d]‚dS(miÿÿÿÿN(tmkdirtrmdirtextsep(tverifytverboset
TestFailedcCsòtii|ƒpt|ƒnxÊ|D]Â\}}|iƒ}|}x#|D]}tii||ƒ}qMW|djot|ƒq(to
dG|GHnt|dƒ}|i	|ƒ|o"|ddjo|i	dƒn|i
ƒq(WdS(Ntwritetwiÿÿÿÿs
(tostpathtisdirRtsplittjointNoneRtopenRtclose(troottdescrtnametcontentstcompstfullnametctf((s)/usr/local/lib/python2.5/test/test_pkg.pytmkhier
s$


cCs%to
dG|GHnti|ƒdS(NR(RRR(tx((s)/usr/local/lib/python2.5/test/test_pkg.pyRs
cCs…ti|ƒ}xe|D]]}tii||ƒ}tii|ƒo"tii|ƒot|ƒqti|ƒqWt|ƒdS(N(	RtlistdirR	RR
tislinktcleanouttremoveR(RtnamesRR((s)/usr/local/lib/python2.5/test/test_pkg.pyR s'cCs%to
dG|GHnti|ƒdS(NR(RRR(R((s)/usr/local/lib/python2.5/test/test_pkg.pyR*s
cCs+y|idƒWntj
onX|S(Nt__builtins__(Rt
ValueError(tlst((s)/usr/local/lib/python2.5/test/test_pkg.pytfixdir.s
cCstiƒ}t||ƒti}tidtƒ\}}ti||ƒti	|ƒzbtii
d|ƒtodGtiGHnyt|t
ƒhƒWntidtiƒnXWd|ti(ti|ƒyt|ƒWntitfj
onXXdS(Nttextis
sys.path =tfile(ttempfiletmkdtempRtsysR	tmkstemptTrueRRRtinsertRtexecfiletglobalst	tracebackt	print_exctstdouttunlinkRterrortIOError(thiertcodeRtsavepathtfdtfname((s)/usr/local/lib/python2.5/test/test_pkg.pytruntest7s(




tt1st1 __init__tpyts	import t1tt2st2 __init__s''doc for t2'; print __name__, 'loading'st2 subst2 sub __init__s
t2 sub subsubst2 sub subsub __init__s#print __name__, 'loading'; spam = 1s²
import t2
print t2.__doc__
import t2.sub
import t2.sub.subsub
print t2.__name__, t2.sub.__name__, t2.sub.subsub.__name__
import t2
from t2 import *
print dir()
from t2 import sub
from t2.sub import subsub
from t2.sub.subsub import spam
print sub.__name__, subsub.__name__
print sub.subsub.__name__
print dir()
import t2.sub
import t2.sub.subsub
print t2.__name__, t2.sub.__name__, t2.sub.subsub.__name__
from t2 import *
print dir()
tt3st3 __init__sprint __name__, 'loading'st3 subst3 sub __init__s
t3 sub subsubst3 sub subsub __init__s
import t3.sub.subsub
print t3.__name__, t3.sub.__name__, t3.sub.subsub.__name__
reload(t3)
reload(t3.sub)
reload(t3.sub.subsub)
tt4s%print 'THIS SHOULD NOT BE PRINTED (t4spy)'st4 __init__st4 subs&print 'THIS SHOULD NOT BE PRINTED (subst4 sub __init__s
t4 sub subsubs)print 'THIS SHOULD NOT BE PRINTED (subsubst4 sub subsub __init__s@
from t4.sub.subsub import *
print "t4.sub.subsub.spam =", spam
tt5st5 __init__s
import t5.foos	t5 stringst5 foos;print __name__, 'loading'; import string; print string.spams
import t5
from t5 import *
print dir()
import t5
print fixdir(dir(t5))
print fixdir(dir(t5.foo))
print fixdir(dir(t5.string))
tt6st6 __init__s!__all__ = ['spam', 'ham', 'eggs']st6 spamst6 hamst6 eggssT
import t6
print fixdir(dir(t6))
from t6 import *
print fixdir(dir(t6))
print dir()
tt7sprint 'Importing t7spy'st7 __init__st7 subst7 sub __init__s
t7 sub subsubst7 sub subsub __init__s
t7, sub, subsub = None, None, None
import t7 as tas
print fixdir(dir(tas))
verify(not t7)
from t7 import sub as subpar
print fixdir(dir(subpar))
verify(not t7 and not sub)
from t7.sub import subsub as subsubsub
print fixdir(dir(subsubsub))
verify(not t7 and not sub and not subsub)
from t7.sub.subsub import spam as ham
print "t7.sub.subsub.spam =", ham
verify(not t7 and not sub and not subsub)
tx5simport as.aitx6iótx7iôtx8iLtx9simport tatx10tx11iætx12içtx13tx14iÐt__main__iis-qs
skipping testsrunning tests,No ImportError exception on 'import sys.imp'(R9N(R<N(st2 subN(s
t2 sub subsubN(R=N(st3 subN(s
t3 sub subsubN(R>N(st4 subN(s
t4 sub subsubN(R?N(R@N(RAN(st7 subN(s
t7 sub subsubN(R'RR%R-RRRttest.test_supportRRRRRR"R8R
tteststnonteststargst__name__targvRR3R4timptsys.imptImportError(((s)/usr/local/lib/python2.5/test/test_pkg.pys<module>s¸0			
				#	


		

Man Man