ó
 Qc           @   s8   d  Z  g  Z e Z d Z d Z d e f d     YZ d S(   s,  
This is a fake 'site' module available in default Python Library.

The real 'site' does some magic to find paths to other possible
Python modules. We do not want this behaviour for frozen applications.

Fake 'site' makes PyInstaller to work with distutils and to work inside
virtualenv environment.
t   _Helperc           B   s    e  Z d  Z d   Z d   Z RS(   s_   
     Define the builtin 'help'.
     This is a wrapper around pydoc.help (with a twist).
     c         C   s   d S(   NsH   Type help() for interactive help, or help(object) for help about object.(    (   t   self(    (    s]   C:\Users\Salopaasi\My Documents\pyinstaller-pyinstaller-275d4c9\PyInstaller\fake\fake-site.pyt   __repr__0   s    c         O   s   d d  l  } | j | |   S(   Ni˙˙˙˙(   t   pydoct   help(   R   t   argst   kwdsR   (    (    s]   C:\Users\Salopaasi\My Documents\pyinstaller-pyinstaller-275d4c9\PyInstaller\fake\fake-site.pyt   __call__3   s    (   t   __name__t
   __module__t   __doc__R   R   (    (    (    s]   C:\Users\Salopaasi\My Documents\pyinstaller-pyinstaller-275d4c9\PyInstaller\fake\fake-site.pyR    +   s   	N(	   R
   t   PREFIXESt   Falset   ENABLE_USER_SITEt   Nonet	   USER_SITEt	   USER_BASEt   objectR    (    (    (    s]   C:\Users\Salopaasi\My Documents\pyinstaller-pyinstaller-275d4c9\PyInstaller\fake\fake-site.pyt   <module>   s
   