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
Ñò
Œœ¤Oc        	   @€  sÒ   d  d k  l Z d  d k Z d  d k Z d  d k l Z d  d k l Z d  d k l	 Z	 e i
 e ƒ Z e i
 d ƒ Z e i
 d ƒ Z d e d „ Z d	 „  Z d
 „  Z d „  Z d „  Z d
 e f d „  ƒ  YZ d S(   iÿÿÿÿ(   t   with_statementN(   t   dumps(   t   symlink(   t   getvers/   (.*?)(-py\d\.\d(?:-[^.]*)?)?(\.egg-info|\.pth)$s8   ^#!\s*/usr/bin/(?:env\s+)?(python(\d+\.\d+)?(?:-dbg)?).*c         C€  sŒ   t  |  t ƒ o# t d „  |  i d ƒ Dƒ ƒ }  n |  d	 j o d |  } n d |  } | o d | } n | o d | | f } n | S(
   sà   Return path to site-packages directory.
    >>> sitedir((2, 5))
    '/usr/lib/python2.5/site-packages/'
    >>> sitedir((2, 7), 'python-foo', True)
    'debian/python-foo/usr/lib/debug/usr/lib/python2.7/dist-packages/'
    c         s€  s   x |  ] } t  | ƒ Vq Wd  S(   N(   t   int(   t   .0t   i(    (    s$   /usr/share/python/debpython/tools.pys	   +   s   	 t   .i   i   s#   /usr/lib/python%d.%d/dist-packages/s#   /usr/lib/python%d.%d/site-packages/s   /usr/lib/debug%ss   debian/%s%s(   i   i   (   t
   isinstancet
   basestringt   tuplet   split(   t   versiont   packaget   gdbt   path(    (    s$   /usr/share/python/debpython/tools.pyt   sitedir"   s    #
c         C€  sk   |  i  d ƒ } | i  d ƒ } x( | d | d j o | d =| d =q! Wd i d g t | ƒ d | ƒ S(   s~   Return relative path.
    >>> relpath('/usr/share/python-foo/foo.py', '/usr/bin/foo', )
    '../share/python-foo/foo.py'
    t   /i    s   ..i   (   R   t   joint   len(   t   targett   linkt   tt   l(    (    s$   /usr/share/python/debpython/tools.pyt   relpath:   s     c         C€  s   t  t |  | ƒ | ƒ S(   s   Create relative symlink.(   R   R   (   R   R   (    (    s$   /usr/share/python/debpython/tools.pyt   relative_symlinkG   s    c         C€  sÈ   yž t  |  ƒ i i ƒ  } z~ | ~ } | i d ƒ } t i | ƒ } | p d S| i ƒ  } | d j o. | d o | d t | d ƒ f } n | SWd QXWn# t	 j
 o t
 i d |  ƒ n Xd S(   sp   Check file's shebang.
    :rtype: tuple
    :returns: pair of Python interpreter string and Python version
    i    i   i    Ns   cannot open %s(   NN(   t   opent   __exit__t	   __enter__t   readt
   SHEBANG_REt   matcht   Nonet   groupsR   t   IOErrort   logt   error(   t   fnamet   _[1]t   fpt   dataR   t   res(    (    s$   /usr/share/python/debpython/tools.pyt
   shebang2pyverL   s    #
c         C€  sJ   t  i |  ƒ } | o0 | i d ƒ d j	 o d i | i d d ƒ ƒ S|  S(   s  Remove Python version and platform name from Egg files/dirs.
    >>> clean_egg_name('python_pipeline-0.1.3_py3k-py3.1.egg-info')
    'python_pipeline-0.1.3_py3k.egg-info'
    >>> clean_egg_name('Foo-1.2-py2.7-linux-x86_64.egg-info')
    'Foo-1.2.egg-info'
    i   t    i   i   N(   t
   EGGnPTH_RER   t   groupR    R   (   t   nameR   (    (    s$   /usr/share/python/debpython/tools.pyt   clean_egg_namea   s    t   memoizec           B€  s   e  Z d  „  Z d „  Z RS(   c         C€  s   | |  _  h  |  _ d  S(   N(   t   funct   cache(   t   selfR1   (    (    s$   /usr/share/python/debpython/tools.pyt   __init__p   s    	c         O€  sJ   t  | | f ƒ } | |  i j o |  i | | Ž  |  i |