Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
WMc @ s d Z d d k Z d d k Z d d k Z d d d g Z d d d d d d Z d d d d d Z d
d d d d Z d Z d
Z
e d j o! e e
Z
e i e
n d S( s Module/script to "compile" all .py files to .pyc (or .pyo) file.
When called as a script with arguments, this compiles the directories
given as arguments recursively; the -l option prevents it from
recursing into directories.
Without arguments, if compiles all modules on sys.path, without
recursing into subdirectories. (Even though it should do so for
packages -- for now, you'll have to deal with packages separately.)
See module py_compile for details of the actual byte-compilation.
iNt compile_dirt compile_filet compile_pathi
i c C su | p d G| Gd GHn y t i | } Wn% t i j
o d G| GHg } n X| i d } x| D]} t i i | | } | d j o t i i | | }
n d }
t i i | p' t | | | | | p
d } qmqj | d j ou | t i j oe | t i
j oU t i i | oB t i i | o. t | | d |
| | | p
d } qmqj qj W| S( s Byte-compile all modules in the given directory tree.
Arguments (only dir is required):
dir: the directory to byte-compile
maxlevels: maximum recursion level (default 10)
ddir: if given, purported directory name (this is the
directory name that will show up in error messages)
force: if 1, force compilation, even if timestamps are up-to-date
quiet: if 1, be quiet during compilation
t Listings ...s
Can't listi i N(
t ost listdirt errort sortt patht joint Nonet isdirR t curdirt pardirt islinkR ( t dirt maxlevelst ddirt forcet rxt quiett namest successt namet fullnamet dfile( ( s /usr/lib/python2.6/compileall.pyR s2
c
C s d } t i i | } | d
j o t i i | | } n d
} | d
j o | i | } | o | Sn t i i | oj| d | d } }
|
d j oD| t o d p d } t i | i } y t i | i }
Wn t i
j
o
d }
n X|
| j o
| o | S| p d G| Gd GHn y t i | d
| t
} Wny t j
o
t qt i j
o/ } | o d G| Gd GHn | i GHd } qt j
o } d G| GHd } qX| d j o
d } qqn | S( s= Byte-compile file.
file: the file to byte-compile
ddir: if given, purported directory name (this is the
directory name that will show up in error messages)
force: if 1, force compilation, even if timestamps are up-to-date
quiet: if 1, be quiet during compilation
i is .pyt ct oi t Compilings ...t SorryN( R R t basenameR
R t searcht isfilet __debug__t statt st_mtimeR t
py_compilet compilet Truet KeyboardInterruptt PyCompileErrort msgt IOError( R R R R R R R R t mot headt tailt cfilet ftimet ctimet okt errt e( ( s /usr/lib/python2.6/compileall.pyR = sJ
i c C sh d } x[ t i D]P } | p | t i j o | o d GHq | o t | | d | d | } q W| S( s Byte-compile all module on sys.path.
Arguments (all optional):
skip_curdir: if true, skip current directory (default true)
maxlevels: max recursion level (default 0)
force: as for compile_dir() (default 0)
quiet: as for compile_dir() (default 0)
i s Skipping current directoryR N( t sysR R R R R
( t skip_curdirR R R R R ( ( s /usr/lib/python2.6/compileall.pyR l s
c C s | } | o yY | d j o
t i } n
t | } x, | i } | p Pn | i | d q: Wq t j
o d | GH q Xn | S( s&